DelphiDox-Example
TClass1 Class Reference

TClass 1. More...

Inherits TObject.

Public Member Functions

int Func1 ()
 TClass 1 / Func 1.
 
void Proc1 ()
 TClass 1 / Proc 1.
 

Public Attributes

int Field1
 TClass 1 / Field 1.
 
property int Prop1 = {read=Field1, write=Field1, nodefault}
 property TClass 1 / Prop 1
 

Detailed Description

TClass 1.

Delphi-Declaration
TClass1 = class
public
constructor Create();
destructor Destroy(); override;
public
Field1: INTEGER;
FUNCTION Func1(): INTEGER;
PROCEDURE Proc1();
property Prop1: INTEGER read Field1 write Field1; // Prop1
END; // TClass1

Basic class without an ancestor (--> defaults to TObject)


The documentation for this class was generated from the following files:
TClass1::Proc1
void Proc1()
TClass 1 / Proc 1.
TClass1::Prop1
property int Prop1
property TClass 1 / Prop 1
Definition: Example_CLASS.hpp:39
TClass1::Func1
int Func1()
TClass 1 / Func 1.
TClass1
TClass 1.
Definition: Example_CLASS.hpp:30
TClass1::Field1
int Field1
TClass 1 / Field 1.
Definition: Example_CLASS.hpp:36