Project: | Siconos |
---|---|
Internal Release Number: | 1.0 |
Last update: | September 15, 2005 |
Related Documents: |
/
** \
class class name * \
brief short description of the object role
* \
author author of the first version of this
class * \
version current version * \
date Date of creation of the first version
: mm/dd/yyyy *
*
describe here the main features of the class
more in
details
*
* \
bug list of potential bugs (one per line)
* \
warning list of warnings (one per line) * \
todo add here any comment about possible
improvements */
/
**
definition
of ObjectMemberC */
/
**
definition of sizeC */
/
** \
fn
ClassName(argList)
* \
brief constructor from ...
* \
param ...
*/
// == DESTRUCTOR ==
~ClassName();
// == GETTERS AND SETTERS ==
/
** \
fn int const
getSizeC() const
* \
brief get member sizeC
* \
return an int
*/
inline const int getSizeC() const
{ return sizeC;}
/
** \
fn void setSizeC(const
int& newValue)
* \
brief set value for member sizeC
* \
param an int
*/
inline void setSizeC(const int&
newValue) { sizeC = newValue; }
// == OTHER FUNCTIONS ==
};
#endif