General information:Author: klaasje Version: 1.0 Date: Wed Oct 20 9:03:04 MET 1999 |
Header files:
|
Code files:
|
Template class DL_Node This class is used in the class DL_List to contain the items of the list. This can be a pointer to an object or the object itself. The class contains a next and a previous pointer to connect the nodes in the list. class Dtype
Object stored at the node
scope: public | purpose: normal | inline?: no | function property: standard | type: basic | typename: NONE |
Declaration:
DL_Node()
Description:
Public membersTemplate constructor no contentsConstruct a node for a list object
scope: public | purpose: normal | inline?: no | function property: standard | type: basic | typename: NONE |
Declaration:
DL_Node(Dtype n)
Parameters:
n : Object stored at the node
Description:
constructor with init of Dtype
scope: public | purpose: normal | inline?: no | function property: standard | type: basic | typename: NONE |
Declaration:
~DL_Node()
Description:
Destructor
scope: public | type: basic | typename: Dtype |
Declaration:
Dtype _item
Description:
Public membersdata in node
scope: public | type: basic | typename: DL_Node* |
Declaration:
DL_Node* _next
Description:
pointer to next node
scope: public | type: basic | typename: DL_Node* |
Declaration:
DL_Node* _prev
Description:
pointer to previous node