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
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
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
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.
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 ?
___