[Doxygen-develop] Wish list (or is it present?): Order of routines in Call Graph.
Brought to you by:
dimitri
From: Cadle, B. <bc...@ar...> - 2005-01-03 21:56:04
|
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 =3D 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? |