/* Filename: lstqueue.h Programmer: Br. David Carlson Date: April 13, 1998 This is the header file to accompany LstQueue.cpp. They provide the LstQueClass shown below which is a subclass of QueBaseClass. */ #include "queue.h" #include "list.h" class LstQueClass: public QueBaseClass { public: bool Empty(void) const; void Insert(const ItemType & Item); void Remove(ItemType & Item); private: ListClass List; // an embedded List object };