Return to Unit UltiboClasses
Description
To be documented
Class definitions
[Expand]
THashStringObject = class(TStringObjectEx)
Note: A TObject with Prev/Next/Hash for use in HashStringLists
|
|
private
|
FList:THashLinkedStringList;
|
|
FKeyPrev:THashStringObject;
|
|
FKeyNext:THashStringObject;
|
|
|
procedure SetHash(AHash:LongWord);
|
|
protected
|
procedure SetValue(const AValue:String); override;
|
|
public
|
property List:THashLinkedStringList read FList write FList;
|
|
property KeyPrev:THashStringObject read FKeyPrev write FKeyPrev;
|
|
property KeyNext:THashStringObject read FKeyNext write FKeyNext;
|
|
Function declarations
[Expand]
procedure THashStringObject.SetHash(AHash:LongWord);
Description: To be documented
[Expand]
procedure THashStringObject.SetValue(const AValue:String);
Description: To be documented
Return to Unit Reference