A test class. More...
#include <FileTemplate.h>
Public Types | |
| enum | TEnum { TVal1 , TVal2 , TVal3 } |
| An enum. More... | |
Public Member Functions | |
| ClassTemplate () | |
| Construction. 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... | |
| virtual | ~ClassTemplate () |
| Destruction. More... | |
Public Attributes | |
| enum Base::ClassTemplate::TEnum * | enumPtr |
| enum pointer. More... | |
| enum Base::ClassTemplate::TEnum | enumVar |
| enum variable. More... | |
a group of methods | |
| int | publicVar |
| a public variable. More... | |
| int(* | handler )(int a, int b) |
| a function variable. More... | |
| std::string | something |
| virtual void | one ()=0 |
| I am method one. More... | |
| virtual void | two ()=0 |
| I am method two. More... | |
| virtual void | three ()=0 |
| I am method three. More... | |
A test class.
A more elaborate class description. Detailed description with some formatting:
More text in a new paragraph. Also with HTML tags:
More text here.
| ClassTemplate::ClassTemplate | ( | ) |
Construction.
A constructor.
A more elaborate description of the constructor.
|
virtual |
Destruction.
A destructor.
A more elaborate description of the destructor.
|
pure virtual |
I am method one.
a normal member taking two arguments and returning an integer value.
| a | an integer argument. |
| s | a constant character pointer. |
|
pure virtual |
|
pure virtual |
I am method three.
|
pure virtual |
I am method two.
| enum Base::ClassTemplate::TEnum * Base::ClassTemplate::enumPtr |
enum pointer.
Details.
| enum Base::ClassTemplate::TEnum Base::ClassTemplate::enumVar |
enum variable.
Details.
| int Base::ClassTemplate::publicVar |
a public variable.
Details.
| std::string Base::ClassTemplate::something |