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
|