#include <CLASS.h>
Public Member Functions | |
CLASS () | |
Constructor method. | |
~CLASS () | |
Distructor method. | |
virtual bool | Init (int one, int two, char *three) |
Initializator of class. | |
Private Attributes | |
int | myAttribyte |
This brief description is in the same lines of attribute declaration. |
This class do not nothing. But is useful to understand how you can use the comments understandable to Doxygen. Detailed description of class. ...
CLASS::CLASS | ( | ) |
Constructor method.
The CLASS constructor is aimed at the creation of the object. In this step is possible initialize some attributes.
CLASS::~CLASS | ( | ) |
Distructor method.
Destroy of object CLASS. All object's data will be lost.
bool CLASS::Init | ( | int | one, | |
int | two, | |||
char * | three | |||
) | [virtual] |
Initializator of class.
Initializator of the object.
one] | description of first parameter. | |
two] | description of second parameter. | |
three] | description of third parameter. |
Code Description of Init Method
int CLASS::myAttribyte [private] |
This brief description is in the same lines of attribute declaration.