class queueLL { private: //put what you need here... public: queueLL() {} ~queueLL() {} //add item to back of queue void enqueue(int x) {} //remove and return first item from queue int dequeue() {} //return true if empty, false otherwise. bool empty() {} //For the final part of the test program, template this class //and add a decimate method. }