Defines the Nodes for a linked list with an associated string for each node
Namespace: GLists
Delphi
|
type
TSQStringNode = 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 (Inherited from GLists.TSQNode.)
|
|
Value
|
Specifies the string associated with the node.
|
Top
|