RE: [Doxygen-users] Sorting member functions (bug?)
Brought to you by:
dimitri
From: Prikryl,Petr <PRI...@sk...> - 2001-09-13 06:41:05
|
Try "doxygen -g" to generate Doxyfile with comments. Then look for SORT_MEMBER_DOCS. You can find the following: # If the SORT_MEMBER_DOCS tag is set to YES (the default) then doxygen # will sort the (detailed) documentation of file and class members # alphabetically by member name. If set to NO the members will appear in # declaration order. SORT_MEMBER_DOCS = YES It works for me concerning the detailed descriptions. On the other hand, the list of methods with brief descriptions (in the first part of a documentation page for a class) is not sorted. I guess that it can be a bug. Or is it intentional? Thanks, Petr -- Petr Prikryl, SKIL, spol. s r.o., pri...@sk... > -----Original Message----- > From: Anthony Yuen [SMTP:an...@ac...] > Sent: Thursday, September 13, 2001 5:38 AM > To: dox...@li... > Subject: [Doxygen-users] Sorting member functions > > > Hi, I just started using Doxygen, please bear with me. I'd like > to have the member functions of my C++ classes to be sorted > alphabetically, > section by section (i.e. public, protected, private are separately > sorted). Is > there such an option in Doxygen? I'm using 1.2.10. Thanks for your help. > > |