#ifndef STACKEH #define STACKEH #include "stack.h" class stacke: public ::stack { //stack with error checking public: stacke(): stack() {} ~stacke(); void push(int i); int pop(); }; #endif