[Doxygen-users] Order of header files

2016-04-18 Thread Edward Diener
When I look at doxygen output as it generates the documentation I can see it is processing the input files in the order I specify as INPUT but I also see that it says it is generating docs in a different order. Why is that and how can I change doxygen so that I can control the order of the head

[Doxygen-users] Generated order of source files

2016-04-25 Thread Edward Diener
The order of the files I specify for the INPUT tag is not the same as the generated order of files I see as command line output to the doxygen command. In the doxygen output I might see: Reading and parsing tag files Parsing files Preprocessing afile.hpp... Parsing file afile.hpp... Preprocessin

[Doxygen-users] Documenting macro which are not defined in the code

2016-04-26 Thread Edward Diener
In my library there are is a macro which, if defined at all by the end-user, changes the way the code works. I want to include this macro in the doxygen documentation to my library. So I add the doxygen comments: /** @file some_header.hpp @brief Some brief file description. Some longe

Re: [Doxygen-users] Documenting macro which are not defined in the code

2016-04-26 Thread Edward Diener
On 4/26/2016 8:04 AM, Richard Damon wrote: > On 4/26/16 3:37 AM, Edward Diener wrote: >> In my library there are is a macro which, if defined at all by the >> end-user, changes the way the code works. I want to include this macro >> in the doxygen documentation to my library.

[Doxygen-users] Parameter order in HTML documentation

2021-04-11 Thread Edward Diener
When I document a function with multiple @param special commands the output shows those parameters in alphabetical order rather than the order in which the @param special command occur. Is there a way to change this to the order in which those special commands occur ? ___