I want all member functions of a class to have access to the same stack. Each member function will push data to the stack and pop data from the stack.
I am having a hard time declaring the stack. I have a cpp file and a header file it won't let me declare a stack in the header file. Does anyone have an example of how this could be done?
I need to use a stack as a LIFO data structure makes more sense as I only need to access the last item placed on the stack.
I tried declaring it in the header file as a protected member with stack<int> items; but get a compile error "stack does not name a type".
Adam
#include <stack>at the beginning of your header? – kol Dec 6 '11 at 21:13