Can Doxygen output members purely in order of declaration?
Asked Answered
S

1

12

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?

Stunsail answered 6/9, 2009 at 14:16 Comment(0)
S
17

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

SORT_MEMBER_DOCS = NO

which disables alphabetical sorting of members.

Stunsail answered 7/9, 2009 at 2:38 Comment(1)
At least in Version 1.8, setting SORT_MEMBER_DOCS = NO will document the functions in declaration order.Uigur

© 2022 - 2024 — McMap. All rights reserved.