[Doxygen-users] Call Graphs - excluding functions
Brought to you by:
dimitri
From: Leif J. <le...@cr...> - 2010-10-15 11:35:44
|
Hi, We have been using doxygen for quite a while now and like it very much. One thing I would like though and haven't been able to figure out how to do (if possible), is to exclude certain functions from the call graphs. I know that I could use the \callgraph option to include only those I want to generate call graphs for, but I actually have say 100 functions total and only 5 of those not to be output. The situation is also slightly different, because what I really want is to exclude certain functions from all call graphs. Consider the following example: void a() { b(); c(); u(); } void b() { c(); u(); } void c() { u(); } void u() { } Here u() is a 'utility' function that I don't want to clubber my diagrams for functions a(), b(), and c(). Is there a way to do this without having to restructure my program ? Greetings, Leif |