lazarus/templates/template.inc

53 lines
1.6 KiB
PHP

{******************************************************************************
TMyClass
******************************************************************************}
{------------------------------------------------------------------------------
Method: TMyClass.Create
Params: AOwner: the owner of the class
Returns: Nothing
Constructor for the class.
------------------------------------------------------------------------------}
constructor TMyClass.Create(AOwner : TComponent);
begin
end;
{------------------------------------------------------------------------------
Method: TMyClass.Destroy
Params: None
Returns: Nothing
Destructor for the class.
------------------------------------------------------------------------------}
destructor TMyClass.Destroy;
begin
end;
{------------------------------------------------------------------------------
Method: TMyClass.MyMethod
Params: AOwner: the owner of the class
Returns: Nothing
Description of the procedure for the class.
------------------------------------------------------------------------------}
procedure TMyClass.MyMethod(AOwner: TComponent);
begin
end;
{------------------------------------------------------------------------------
Function: TMyClass.MyFunction
Params: AOwner: the owner of the class
Returns: String containing output from the function.
Description of the function for the class.
------------------------------------------------------------------------------}
function TMyClass.MyFunction(AOwner: TComponent): String;
begin
end;