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 doc
vi doxygen_publ.cfg &