Defines the Nodes for a doubly linked list (i.e., it points to the previous node as well as the next node)
Namespace: GLists
Delphi
|
type
TSQDoubleNode = class( TSQNode )
end;
|
|
Name
|
Description
|
|
Item
|
Item to store at this location in the linked list (Inherited from GLists.TSQNode.)
|
|
Next
|
Points to the next node in the linked list
|
|
Previous
|
Points to the previous node in the linked list
|
Top
|