Can Doxygen output members purely in order of declaration?

元气小坏坏 提交于 2019-12-22 05:08: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?


回答1:


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

SORT_MEMBER_DOCS = NO

which disables alphabetical sorting of members.



来源:https://stackoverflow.com/questions/1385775/can-doxygen-output-members-purely-in-order-of-declaration

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!