#include <FileTemplate.h>
Public Types | |
enum | TEnum { TVal1, TVal2, TVal3 } |
An enum. More... | |
Public Member Functions | |
ClassTemplate () | |
Construction. | |
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. | |
virtual | ~ClassTemplate () |
Destruction. | |
a group of methods | |
virtual void | one (void)=0 |
I am method one. | |
virtual void | three (void)=0 |
I am method three. | |
virtual void | two (void)=0 |
I am method two. | |
Public Attributes | |
enum Base::ClassTemplate::TEnum * | enumPtr |
An enum. | |
enum Base::ClassTemplate::TEnum | enumVar |
enum variable. | |
int(* | handler )(int a, int b) |
a function variable. | |
int | publicVar |
a public variable. | |
std::string | something |
A test class.
A more elaborate class description. Detaild description with some formating:
#include <Base/Console.h> Base::Console().Log("Stage: %d",i);
More text in a new paragraph. Also with HTML tags:
More text here.
Definition at line 82 of file FileTemplate.h.
ClassTemplate::ClassTemplate | ( | ) |
Construction.
A constructor.
A more elaborate description of the constructor.
Definition at line 43 of file FileTemplate.cpp.
ClassTemplate::~ClassTemplate | ( | ) | [virtual] |
Destruction.
A destructor.
A more elaborate description of the destructor.
Definition at line 51 of file FileTemplate.cpp.
virtual void Base::ClassTemplate::one | ( | void | ) | [pure virtual] |
I am method one.
int ClassTemplate::testMe | ( | int | a, | |
const char * | s | |||
) |
a normal member taking two arguments and returning an integer value.
GetConsole().Warning("Some defects in %s, loading anyway\n",str);
a | an integer argument. | |
s | a constant character pointer. |
Definition at line 74 of file FileTemplate.cpp.
virtual void Base::ClassTemplate::testMeToo | ( | char | c1, | |
char | c2 | |||
) | [pure virtual] |
virtual void Base::ClassTemplate::three | ( | void | ) | [pure virtual] |
I am method three.
virtual void Base::ClassTemplate::two | ( | void | ) | [pure virtual] |
I am method two.
An enum.
More detailed enum description. enum pointer. Details.
enum variable.
Details.
int(* Base::ClassTemplate::handler)(int a, int b) |
a function variable.
Details.
std::string Base::ClassTemplate::something |
Definition at line 136 of file FileTemplate.h.