Last edited on
Thanks that fixed one of the four problems.
Forgot to mention the other thing. To use vector you need to include the std namespace.
Either add using namespace std;
to the top of your MyStack.h or preferably do std::vector<ItemType> stack;
Thanks again. Appreciate the help