Public Member Functions | |
NListNode (void) | |
Constructs a NListNode object. | |
NListNode (const NListNode &rhs) | |
Copy constructs a NListNode object. | |
NListNode & | operator= (const NListNode &rhs) |
Copies a NListNode object. | |
Public Attributes | |
NListNode< T > * | previous |
NListNode< T > * | next |
T | data |
Definition at line 41 of file nlistnode.h.
Copy constructs a NListNode object.
rhs | The object to be copied |
Definition at line 61 of file nlistnode.h.
Copies a NListNode object.
rhs | The object to be copied |
Definition at line 72 of file nlistnode.h.
Previous node
Definition at line 42 of file nlistnode.h.
Referenced by NList::append(), NSortedList::insert(), NList::insert(), NListNode< NString >::NListNode(), NListNode< NString >::operator=(), and NList::removeAt().
Next node
Definition at line 43 of file nlistnode.h.
Referenced by NSortedList::insert(), NList::insert(), NListNode< NString >::NListNode(), NListNode< NString >::operator=(), and NList::removeAt().
T data |
The data stored by the node
Definition at line 44 of file nlistnode.h.
Referenced by NList::append(), NSortedList::insert(), NList::insert(), NListNode< NString >::NListNode(), and NListNode< NString >::operator=().