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?
Asked
Active
Viewed 5,400 times
1 Answers
17
This is impossible via the config options. The best you can do is:
SORT_MEMBER_DOCS = NO
which disables alphabetical sorting of members.

Robin Rodricks
- 110,798
- 141
- 398
- 607
-
3At least in Version 1.8, setting `SORT_MEMBER_DOCS = NO` will document the functions in declaration order. – András Aszódi Jun 11 '13 at 12:08