#ifndef _STACKLIST_HPP #define _STACKLIST_HPP_ #include"simpleList.hpp" class StackList { protected: simpleList *storage; public: StackList(); ~StackList(); bool isEmpty() const; StackList *push(int); bool pop(int&); }; #endif