The Book Merge files are an attempt to document "by the book". Merging QofBook structures
Feel free to start documenting or playing with doxygen configuration. This main page can be found in src/doc/doxygen_main_page.c .
Each doxygen section must be within a single comment block although large comment blocks can be split into separate pages: Style discussion.
This main page is just an introduction to doxygen markup, see the Doxygen manual for the full command set.
Code snippets need special handling in the text overviews. Change all comment markers to // (so that the overview comment remains intact) and then wrap each code snippet in the verbatim endverbatim doxygen markers.
One useful method is to edit these .txt files using the syntax highlighting of normal C files.
This will enable doxygen to link all parameter types to the declarations every time the type is used in a function - very helpful to new developers.
\file filename.h
\brief one-liner summary of the file purpose
\author the usual copyright statement
To put a description with each function or structure, use '\brief' End the brief description with a blank line. The rest of the documentation will then be shown in the body of the doxygen page.
Commands may begin with \ or @
End the list with a blank line. Use :: at the start of a function or structure to link to the page for that function in the doxygen documentation. e.g. qof_class_foreach
Use the param command to describe function parameters in the text.
Use the 'back reference' to document enumerator values:
enum testenum {
enum_one **< less than marker tells doxygen to use this line to document enum_one.
cd src/doc
doxywizard doxygen.cfg &
1.5.7.1