#ifndef __QUEUE_H #define __QUEUE_H #include "my_list.h" template class CQueue : public CList { public: bool empty() { return (CList::front == NULL); } void push(const T& t) { push_back(t); } }; #endif