Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Can Doxygen output members purely in order of declaration?

Which Doxygen option can completely disable sorting members by type (Private / Public / Method / Variable), and output members purely based on the order in which they were declared?

like image 582
Robin Rodricks Avatar asked Sep 06 '09 14:09

Robin Rodricks


People also ask

How do I show code in doxygen?

You can put example source code in a special path defined in the doxygen config under EXAMPLE_PATH , and then insert examples with the @example tag. Doxygen will then generate an extra page containing the source of the example. It will also set a link to it from the class documentation containing the example tag.

What is doxygen format?

Doxygen (/ˈdɒksidʒən/ DOK-see-jən) is a documentation generator and static analysis tool for software source trees. When used as a documentation generator, Doxygen extracts information from specially-formatted comments within the code.


1 Answers

This is impossible via the config options. The best you can do is:

SORT_MEMBER_DOCS = NO

which disables alphabetical sorting of members.

like image 186
Robin Rodricks Avatar answered Sep 21 '22 14:09

Robin Rodricks