60 class XspfStack :
private std::stack<T> {
64 typedef typename std::stack<T>::size_type
size_type;
70 return std::stack<T>::size();
76 T
const &
top()
const {
77 return std::stack<T>::top();
83 void push(T
const & value) {
84 std::stack<T>::push(value);
98 std::stack<T>::c.clear();
105 #endif // XSPF_STACK_H
void push(T const &value)
std::stack< T >::size_type size_type
Holds the height of the stack.