#include <iostream>
using namespace std;

#include "Queue.h"

void aProc()
 { Queue<int>  iq;            // an integer Queue
   Queue<char> cq;            // a  char    Queue

   cout << "\nThis is aProc()\n";

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

   cq.enQ( 'X' );
   cout << "cq: " << cq.deQ() << "\n\n";
 }//aProc

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

