#include <node.h>
Public Member Functions | |
| ListNode (void) | |
| ~ListNode () | |
Public Attributes | |
| ListNode * | nextPtr |
| ListNode * | prevPtr |
| T | data |
seal::LinkedList constitutes a linked list of seal::ListNode objects. Under normal circumstances, a user of SEAL will not need to use this class explicitly. | seal::ListNode< T >::ListNode | ( | void | ) | [inline] |
Default Constructor. Initialises the public members ListNode::prevPtr and nextPtr to NULL.
| seal::ListNode< T >::~ListNode | ( | ) | [inline] |
Destructor. Does nothing.
| ListNode* seal::ListNode< T >::nextPtr |
Pointer to the next ListNode in the list.
| ListNode* seal::ListNode< T >::prevPtr |
Pointer to the previous ListNode in the list.
| T seal::ListNode< T >::data |
The member which actually holds the data.
1.5.5