My Project
|
Brief description of class Template. More...
#include <someRootDirectory/template.h>
Public Types | |
enum | MyEnum { EVal1 , EVal2 } |
My enum. Or yours, if you want! More... | |
typedef Template | Self |
Name type of *this. More... | |
Public Member Functions | |
Template () | |
Default constructor. And now goes the detailed description.... More... | |
~Template () | |
Default destructor. More... | |
int | someMethod (int a, int &o) |
Brief method description. More... | |
char * | strcpy2 (char *strDestination, const char *strSource) |
Example of Copy a string method. More... | |
Protected Attributes | |
bool | m_bSomeFlag |
Short description of some flag till first dot. Everything after that will be considered as a detaiiled description. More... | |
Brief description of class Template.
Detailed description of class Template.
Definition at line 28 of file template.h.
typedef Template Template::Self |
Name type of *this.
Definition at line 32 of file template.h.
enum Template::MyEnum |
My enum. Or yours, if you want!
Enumerator | |
---|---|
EVal1 | Enum value 1. |
EVal2 | Enum value 2. |
Definition at line 35 of file template.h.
Template::Template | ( | ) |
Default constructor. And now goes the detailed description....
Template::~Template | ( | ) |
Default destructor.
USING_NAMESPACE_SINGULARXX int Template::someMethod | ( | int | a, |
int & | o | ||
) |
Brief method description.
We use Algorithm ABC from Book...
Detailed method description.
[in] | a | some int |
[in,out] | o | integer input and resulting value |
Definition at line 25 of file template.cc.
char * Template::strcpy2 | ( | char * | strDestination, |
const char * | strSource | ||
) |
Example of Copy a string method.
The strcpy2 function copies strSource, including the terminating null character, to the location specified by strDestination. No overflow checking is performed when strings are copied or appended. The behavior of strcpy2 is undefined if the source and destination strings overlap.
[out] | strDestination | pointer to source null terminated. continue ... |
[in] | strSource | pointer to destination memory. |
|
protected |
Short description of some flag till first dot. Everything after that will be considered as a detaiiled description.
Definition at line 82 of file template.h.