Simple Application Framework
1
|
#include <List.h>
Public Member Functions | |
Node (const T &val) | |
Constructor. | |
Public Attributes | |
Node * | m_next |
Pointer to the next element. | |
Node * | m_prev |
Pointer to the previous element. | |
T | m_val |
Element value. |
List node.
Saf::Collection::List< T >::Node::Node | ( | const T & | val | ) | [inline] |
Constructor.
Node* Saf::Collection::List< T >::Node::m_next |
Pointer to the next element.
Node* Saf::Collection::List< T >::Node::m_prev |
Pointer to the previous element.
T Saf::Collection::List< T >::Node::m_val |
Element value.