1,079
edits
Salty-horse (talk | contribs) (→Special comments: Added entry about doxygen comments) |
|||
Line 147: | Line 147: | ||
ScummVM uses the [http://www.doxygen.org/ Doxygen] software to generate HTML documentation for the codebase (available [http://scummvm.org/docs/doxygen/html/index.php here]). | ScummVM uses the [http://www.doxygen.org/ Doxygen] software to generate HTML documentation for the codebase (available [http://scummvm.org/docs/doxygen/html/index.php here]). | ||
Doxygen supports ''documentation blocks''. These are specially-formatted comments that doxygen prints out in the generated documentation. They are similar in purpose to Java's | Doxygen supports ''documentation blocks''. These are specially-formatted comments that doxygen prints out in the generated documentation. They are similar in purpose to Java's JavaDoc or Python's docstrings. | ||
There are many ways to mark such comments, but developers are encouraged to use | There are many ways to mark such comments, but developers are encouraged to use the JavaDoc style: | ||
/** | /** |
edits