Author: N.F.S Grundtvig (The members of this class inherits the author by default.)
Documenting member before the declaration as normal.
Documenting member before the declaration as normal. Here we place the documentation for a member before the declaration (and not after it on the same line using
///< ) as we normallly would do since these descriptions rarely would take more than a single line.
This is how it looks in the source:
/**
Documenting member before the declaration as normal. Here we place the ...
*/
int m_iMemberVarLongStandardDoc;
|