//Header File: intStack.h #ifndef INTSTACK_H #define INTSTACK_H class popOnEmpty { }; class pushOnFull { }; const int maxSize = 3; class intStack { private: int top; int s[maxSize]; public: intStack(); void push(const int); int pop(); bool empty() const; bool full() const; }; #endif