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.
enum Test::TEnum |
An enum.
More detailed enum description.
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 chararcter pointer. |
virtual void Test::testMeToo (char c1, char c2) [pure virtual]
|
A pure virtual member.
c1 | the first argument. |
c2 | the second argument. |
enum Test::TEnum * Test::enumPtr |
Enum pointer.
Details.
enum Test::TEnum Test::enumVar |
Enum variable.
Details.
int Test::publicVar |
A public variable.
Details.
int(* Test::handler)(int a,int b) |
A function variable.
Details.