How to control the order of the documentation sections for oxygen?

I added my documentation as follows: a brief description, parameters and return value are explained in the header, details about this implementation are explained in the source.

However, when I create the doxygen documentation, instead of a brief description, details, and then parameters and finally a return value, I get these sections in a different order: short, params, return and details.

I assume this is due to the order in which doxygen finds comments in the document in the source code. Is there a way to set the order of the sections for everything I like, regardless of how the documentation is organized?

+6
documentation doxygen
source share
1 answer

Create and then customize the layout.xml file. For more information, see this page on the Doxygen website .

+2
source share

All Articles