c++ - How to have more than one examples in Doxygen? -
i using doxywizard. under expert tab, in input item-list, @ example_path, have included 2 paths, lead 1 .cpp file, each. however, in generated documentation, see one, regardless of order.
in doxyfile, see this:
example_path           = ../../../inria/rkd/samaras/final/code/main_boost.cpp \                          ../../../inria/rkd/samaras/final/code/main.cpp what missing?
if there solution editing doxyfile directly, interested.
example_path lists directories store example files. if want add example specific class, have reference in header file of class.
example_path = ../../../inria/rkd/samaras/final/code
/** \example main_boost.cpp  * example of how use main_boost.  */  /** \example main.cpp  * example of how use main.  */ see more info here: http://www.stack.nl/~dimitri/doxygen/manual/commands.html#cmdexample
Comments
Post a Comment