Javadoc Style
|
A test class. More...
Public Types | |
enum | TEnum { TVal1, TVal2, TVal3 } |
An enum. More... | |
Public Member Functions | |
Javadoc_Test () | |
A constructor. More... | |
~Javadoc_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 Javadoc_Test::TEnum * | enumPtr |
enum pointer. More... | |
enum Javadoc_Test::TEnum | enumVar |
enum variable. More... | |
int | publicVar |
a public variable. More... | |
int(* | handler )(int a, int b) |
a function variable. More... | |
A test class.
A more elaborate class description.
enum Javadoc_Test::TEnum |
Javadoc_Test::Javadoc_Test | ( | ) |
A constructor.
A more elaborate description of the constructor.
Javadoc_Test::~Javadoc_Test | ( | ) |
A destructor.
A more elaborate description of the destructor.
int Javadoc_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. |
|
pure virtual |
enum Javadoc_Test::TEnum * Javadoc_Test::enumPtr |
enum pointer.
Details.
enum Javadoc_Test::TEnum Javadoc_Test::enumVar |
enum variable.
Details.
int(* Javadoc_Test::handler) (int a, int b) |
a function variable.
Details.
int Javadoc_Test::publicVar |
a public variable.
Details.