Return to Unit UltiboClasses
Description
To be documented
Class definitions
[Expand]
THashListObject = class(TListObject)
Note: A TObject with KeyPrev/KeyNext/KeyHash for use in HashLists
|
|
private
|
FKeyPrev:THashListObject;
|
|
FKeyNext:THashListObject;
|
|
protected
|
FKeyHash:LongWord;
|
Publish in descendants if required
|
|
procedure SetKeyHash(AKeyHash:LongWord);
|
|
public
|
property KeyList:THashLinkedList read FKeyList write FKeyList;
|
|
property KeyPrev:THashListObject read FKeyPrev write FKeyPrev;
|
|
property KeyNext:THashListObject read FKeyNext write FKeyNext;
|
|
Function declarations
[Expand]
procedure THashListObject.SetKeyHash(AKeyHash:LongWord);
Description: To be documented
Return to Unit Reference