Description
Overview
Included files
Included by
Source
/**
\page codeCmd
!!!Illustrating code in the documentation (code, endcode )
The $\\code$ and $\\endcode$ tags enclose a section that is to be formatted as
code, similar to the $\\example, \\endexample$ tags. The code is parsed with DoxyS
codeparser and if possible links are made to classes, functions etc.
!Syntax
||\pre\code
int main()
{
printf("Hello world!\n");
}
\endcode\endpre
!Output
\code
int main()
{
printf("Hello world!\n");
}
\endcode
\sa preCmd for raw formatting of text.
\sa HowToDocument::InlineFormattedCode
*/