Hi,
I have three .dox files which define groups, as follows

ModuleA.dox

/*! \defgroup Module_A Module A
*/


ModuleB.dox

/*! \defgroup Module_B Module B
\ingroup Module_A
*/


ModuleC.dox
/*! \defgroup Module_C Module C
\ingroup Module_A
*/

Generating the documentation, the modules are listed as follows

>ModuleA
        ModuleB
        ModuleC

However, I want to change the order and want ModuleC to appear BEFORE
ModuleB

I am aware that this can be done by specifying the order in which the .dox
files are read by Doxygen, i.e.

@INPUT  = ModuleA.dox ModuleC.dox ModuleB.dox

Unfortunately, I do not have access to the doxygen file to do this. The
whole directory in which the above .dox files are contained is read and then
processed by doxygen, using some makefiles which I am not allowed to tamper
with.

Is there any other way to change the order of the modules "ModuleB" and
"ModuleC" ?

Many thanks for any suggestions.




--
View this message in context: 
http://doxygen.10944.n7.nabble.com/Changing-order-of-modules-without-using-INPUT-tag-tp7288.html
Sent from the Doxygen - Users mailing list archive at Nabble.com.

------------------------------------------------------------------------------
_______________________________________________
Doxygen-users mailing list
Doxygen-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/doxygen-users

Reply via email to