| 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 | 
| An enum. | |
| 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.
| enum Test::TEnum | 
| Test::Test | ( | ) | 
A constructor.
A more elaborate description of the constructor.
| Test::~Test | ( | ) | 
A destructor.
A more elaborate description of the destructor.
| int Test::testMe | ( | int | a, | |
| const char * | s | |||
| ) | 
a normal member taking two arguments and returning an integer value.
| a | an integer argument. | |
| s | a constant character pointer. | 
| virtual void Test::testMeToo | ( | char | c1, | |
| char | c2 | |||
| ) |  [pure virtual] | 
| enum Test::TEnum * Test::enumPtr | 
An enum.
More detailed enum description. enum pointer. Details.
| enum Test::TEnum Test::enumVar | 
enum variable.
Details.
| int(* Test::handler)(int a, int b) | 
a function variable.
Details.
| int Test::publicVar | 
a public variable.
Details.
 1.5.7.1
 1.5.7.1