TProtoEntry

From Ultibo.org
Jump to: navigation, search

Return to Unit Transport


Description


To be documented

Class definitions



TProtoEntry = class(TListObject)

constructor Create;  
destructor Destroy; override;  
private
FLock:TCriticalSectionHandle;  
 
FAliases:TStringList;  
 
function GetName:String;  
procedure SetName(const AName:String);  
procedure SetNumber(ANumber:Word);  
protected
FName:String;  
FNumber:Word;  
public
property Name:String read GetName write SetName;  
property Number:Word read FNumber write SetNumber;  
 
function AcquireLock:Boolean;  
function ReleaseLock:Boolean;  
 
function FindAlias(const Alias:String):Boolean;  
 
function AddAlias(const Alias:String):Boolean;  
function RemoveAlias(const Alias:String):Boolean;  


Function declarations



constructor TProtoEntry.Create;
Description: To be documented
Note None documented


destructor TProtoEntry.Destroy;
Description: To be documented
Note None documented


function TProtoEntry.GetName:String;
Description: To be documented
Note None documented


procedure TProtoEntry.SetName(const AName:String);
Description: To be documented
Note None documented


procedure TProtoEntry.SetNumber(ANumber:Word);
Description: To be documented
Note None documented


function TProtoEntry.AcquireLock:Boolean;
Description: To be documented
Note None documented


function TProtoEntry.ReleaseLock:Boolean;
Description: To be documented
Note None documented


function TProtoEntry.FindAlias(const Alias:String):Boolean;
Description: To be documented
Note None documented


function TProtoEntry.AddAlias(const Alias:String):Boolean;
Description: To be documented
Note None documented


function TProtoEntry.RemoveAlias(const Alias:String):Boolean;
Description: To be documented
Note None documented


Return to Unit Reference