Public Members | |
enum | TEnum { TVal1, TVal2, TVal3 } |
An enum. More... | |
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... | |
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.
Enumeration values:
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.
[pure virtual]
A pure virtual member.
Enum pointer.
Details.
Enum variable.
Details.
A public variable.
Details.
A function variable.
Details.