Public Types | |
enum | TEnum { TVal1, TVal2, TVal3 } |
An enum. More... | |
Public Methods | |
Test () | |
A constructor. More... | |
~Test () | |
A destructor. More... | |
int | testMe (int a, const char *s) |
a normal member taking two arguments and returning an integer value. More... | |
virtual void | testMeToo (char c1, char c2)=0 |
A pure virtual member. More... | |
Public Attributes | |
enum Test::TEnum * | enumPtr |
enum pointer. More... | |
enum Test::TEnum | enumVar |
enum variable. More... | |
int | publicVar |
a public variable. More... | |
int(* | handler )(int a, int b) |
a function variable. More... |
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. More detailed enum description. Details. |
|
enum variable. More detailed enum description. Details. Details. |
|
a function variable. Details. |
|
a public variable. Details. |