#include "stackcontent.h" class Stack { public: Stack(); ~Stack(); void push(int); int pop(); private: Content* top; };