[Doxygen-develop] Re: [Doxygen-users] Wish list (or is it present?): Order of routines in Call Graph
Brought to you by:
dimitri
From: Dimitri v. H. <do...@gm...> - 2005-01-05 12:06:10
|
On Mon, 3 Jan 2005 13:56:05 -0800, Cadle, Brad <bc...@ar...> wrote: > I apologize if this has been addressed elsewhere, but my question is this: > > I have not found a way to specify that the order of appearance of the routines in the Call Graphs reflect the order in which they are in the code. > > For Example I would like: > > int main(int argc, char *argv[]) > { > int ack; > > ack = Foo(); > if (ack) > { > Bar(); > } > Yin(); > Yang(); > > return ack; > } > > to produce something like this: > > main > | > | > | > --------------------- > | | | | > Foo Bar Yin Yang > > and not some other order of appearance of Foo Bar Yin Yang. > > Will this eventually be possible or is there already a mechanism to do this? Doxygen uses dot to layout the graph. Dot doesn't know about the calling order so it will not keep it. I don't know how one could prescribe such order using dot. Regards, Dimitri |