Current Articles | RSS Feed
/** * @brief Brief description: no more than one line * * This is the longer description. There must be a blank line separating * the brief comment from the longer description. *//** * @file hello.c * @author Carla Schroder * @date July 22, 2011.*/#include <stdio.h>/*** This is a demo comment, which can ramble on for as long* as you like*/void main(){ printf("Hello World");}
doxygen -g
PROJECT_NAME = Hello World!PROJECT_NUMBER = 1.0EXTRACT_ALL = YESEXTRACT_PRIVATE = YESEXTRACT_STATIC = YESSOURCE_BROWSER = YESGENERATE_MAN = YES
doxygen Doxyfile
man [filename]
man man/man3/hello.c.3
void function1(); /**< wise comment*/int somevalue; /**< long-winded comment that goes on and on spanning several lines and thankfully, finally ends*/
\a
int \a x and int \a y take precedence
int x and int y take precedence
\b
\code
\endcode
\e
\verbatim
\endverbatim
/** * Your text or special Doxygen commands go here. You don't have to use * an asterisk to start every line; only the opening and closing slashes and * asterisks are required */
/*! * Excellent comment here */
/*! \file */
/** @file */
GENERATE_TREEVIEW = YES
Allowed tags: <a> link, <b> bold, <i> italics