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