[Doxygen-projects] parse class function calls
Brought to you by:
dimitri
|
From: Denes M. <cs0...@ya...> - 2008-10-31 14:38:18
|
Hi!
I'd like to generate call/caller graphs for a c++ project.
Let's say I have a class with a function:
class cat{
public: void meow();
};
Now cat::meow() is threated as a function and documented,
but for example:
// cat *molly = new cat; ...
molly->meow(); is not.
Is it possible to make doxygen understand the second function occurrence also?
Because this way "meow()" function's caller graph is not complete.
Best Regards:
Denes
|