Public Types | |
enum | TEnum { TVal1, TVal2, TVal3 } |
An enum. More... | |
Public Member Functions | |
Test () | |
A constructor. | |
~Test () | |
A destructor. | |
int | testMe (int a, const char *s) |
A normal member taking two arguments and returning an integer value. | |
virtual void | testMeToo (char c1, char c2)=0 |
A pure virtual member. | |
Public Attributes | |
enum Test::TEnum * | enumPtr |
Enum pointer. | |
enum Test::TEnum | enumVar |
Enum variable. | |
int | publicVar |
A public variable. | |
int(* | handler )(int a, int b) |
A function variable. |
A more elaborate class description.
|
An enum. More detailed enum description. |
|
A constructor. A more elaborate description of the constructor. |
|
A destructor. A more elaborate description of the destructor. |
|
A normal member taking two arguments and returning an integer value.
|
|
A pure virtual member.
|
|
Enum pointer. Details. |
|
Enum variable. Details. |
|
A function variable. Details. |
|
A public variable. Details. |