libcsdbg  1.28
C++ exception (and generic) stack trace debug library
template<class T >
csdbg::stack< T >::stack ( )
inline

Object default constructor.

Definition at line 133 of file stack.hpp.

133  :
134 m_top(NULL),
135 m_size(0)
136 {
137 }
u32 m_size
Node count.
Definition: stack.hpp:36
node< T > * m_top
Stack top.
Definition: stack.hpp:34