Re: [Doxygen-users] CALL_GRAPH and CALLER_GRAPH
Brought to you by:
dimitri
From: Richard D. <Ri...@Da...> - 2015-01-27 00:45:12
|
On 1/26/15 4:28 PM, W. Miah wrote: > Hello, > > I am getting a bit confused with the difference between CALL_GRAPH and > CALLER_GRAPH. Can someone give me an example to illustrate the effects > of setting both of them to YES and NO? > > Thanks in advance, > Wadud. A CALL_GRAPH is a listing of everything that you might call, and that those routines might call, and so on. These are those things the routine uses to complete its operation. A CALLER_GRAPH is a listing of everything that might call you, or might call someone who calls you. This gives you an idea of how widely used a function might be. |