| Description | Hierarchy | Properties | Methods |
MyBaseClass is the base class for the system
| APrivateVar | This variable is used locally |
| ~MyBaseClass | Destructor | |
| APrivateFunction | this variable is available to derived classes Overview for APrivateFunction. | |
| AProtectedFunction | This function is availabled to derived classes This returns data private to the class. | |
| Create | Overview for MyBaseClass's constructor. | |
| GetPrivateData | This returns data private to the class. | |
| MyBaseClass | Constructor |
![]() |
APrivateVar:
integer;
int APrivateVar |
| This variable is used locally |
![]() |
inline __ fastcall virtual ~ MyBaseClass( void ) |
| Destructor |
![]() |
procedure
APrivateFunction;
void __ fastcall APrivateFunction( void ) |
| this variable is available to derived classes Overview for APrivateFunction. | |
| This describes APrivateFunction. |
![]() |
procedure
AProtectedFunction;
void __ fastcall AProtectedFunction( void ) |
| This function is availabled to derived classes This returns data private to the class. | |
| Calls APrivateFunction. |
![]() |
constructor Create(); |
| Overview for MyBaseClass's constructor. | |
| Creates the class. |
![]() |
function
GetPrivateData:
integer;
int __ fastcall GetPrivateData( void ) |
| This returns data private to the class. | |
| Gets the private data whatever happens. |
![]() |
__ fastcall MyBaseClass( void ) |
| Constructor |