Defines the Nodes for a queue which are sorted according to a GLists.TSQPriorityNode.Priority .
Note
|
A lower value for priority is a higher priority.
|
Namespace: GLists
Delphi
|
type
TSQPriorityNode = 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.)
|
|
Priority
|
Specifies the priority of the node.
The priority is set when the node is created.
|
Top
|