#include #include"frontBackList.hpp" #ifndef _QUEUELIST_HPP #define _QUEUELIST_HPP class QueueList { private: frontBackList *storage; public: QueueList(); ~QueueList(); bool isEmpty(); bool enqueue(int); bool dequeue(int&); }; #endif