| Basic Types | Enum Types | Object Types | Array Types | Interface Types | Exception Types | Member Types | Method Types | Namespace Types | Foreign Types |
Members are variables bound to a ACDK class.
Member types in ACDK can be any valid C++ class member.
To support members through gargabe collection, reflection
and DMI, the member types has to be valid ACDK types
otherwise the members are foreign.
class LegalAcdkClass
{
private:
int intValue;
RStringBuffer bufferValue;
};
|
class LegalAcdkClass
: extends acdk::lang::Object
{
private:
static int intValue;
static RStringBuffer bufferValue;
};
|
|