#include <templateNode.h>
Collaboration diagram for tutk::TemplateNode< T >:
Public Member Functions | |
TemplateNode (void) | |
Default Constructor. | |
Public Attributes | |
TemplateNode< T > * | prevNodePtr |
Pointer to the previous node when used in a list. | |
TemplateNode< T > * | nextNodePtr |
Pointer to the next node when used in a list. | |
T * | data |
Pointer to the data held by this node. | |
double | key |
Key for the data pointed to by this node. |
|
Default Constructor. Initialises all the pointer members to NULL and the key value to 0; |
|
Pointer to the data held by this node. This is initialised to NULL on object creation. |
|
Key for the data pointed to by this node. This key value will be used in ordering the list. |
|
Pointer to the next node when used in a list. This is initialised to null on object creation. |
|
Pointer to the previous node when used in a list. This is initialised to null on object creation. |