libxspf
1.2.0
|
#include <XspfStack.h>
Public Types | |
typedef std::stack< T >::size_type | size_type |
Holds the height of the stack. | |
Public Member Functions | |
size_type | size () const |
T const & | top () const |
void | push (T const &value) |
void | pop () |
void | clear () |
A generic stack data structure.
Definition at line 56 of file XspfExtensionReader.h.
|
inline |
Clears the stack.
Definition at line 97 of file XspfStack.h.
|
inline |
Pops the topmost element off the stack.
Definition at line 90 of file XspfStack.h.
|
inline |
Pushes value on top of the stack.
Definition at line 83 of file XspfStack.h.
|
inline |
Returns the number of elements on the stack.
Definition at line 69 of file XspfStack.h.
|
inline |
Returns the topmost element on the stack.
Definition at line 76 of file XspfStack.h.