#include <iostream>
using namespace std;

#include "Queue.h"
#include "Queue.userProc.h"

main()
 { Queue<int>   iq;            // an integer Queue
   Queue<char*> sq;            // a  string  Queue

   iq.enQ(100); iq.enQ(200);
   cout << "iq: " << iq.deQ() << " " << iq.deQ() << " " << iq.empty() << "\n";

   sq.enQ((char*)"fred");
   cout << "sq: " << sq.deQ() << "\n";

   aProc(); /* also uses queue */
 }

// test the Queue class: Queue.driver.cpp
// http://www.allisons.org/ll/ProgLang/Cplusplus/
