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

Object constructor.

Parameters
[in]dthe node data pointer
Note
The object is not added to a container

Definition at line 92 of file node.hpp.

92  :
93 m_link(NULL),
94 m_data(d)
95 {
96 }
T * m_data
Node data.
Definition: node.hpp:44
node * m_link
Next node link (direct or XOR link)
Definition: node.hpp:42