ULAPI
8.0
|
A struct used internally by ULList. More...
#include <ulcontainers.h>
Public Member Functions | |
ULListNode () | |
ULListNode (const T &data) | |
ULListNode (const ULListNode< T > &node) | |
ULListNode< T > & | operator= (const ULListNode< T > &node) |
Public Attributes | |
T | data |
ULListNode * | next |
ULListNode * | previous |
A struct used internally by ULList.
ULListNode< T >::ULListNode | ( | ) |
Default constructor.
ULListNode< T >::ULListNode | ( | const T & | data | ) |
Constructor.
[in] | data | The data object with which to initialize this node's data field. |
ULListNode< T >::ULListNode | ( | const ULListNode< T > & | node | ) |
Copy constructor.
ULListNode< T > & ULListNode< T >::operator= | ( | const ULListNode< T > & | node | ) |
Assignment operator.
T ULListNode< T >::data |
ULListNode* ULListNode< T >::next |
ULListNode* ULListNode< T >::previous |