I notice some bugs with Doxygen. Indeed when I run the html documentation with call function, some calling functions are not represented in the graph and are not linked in the code. This problem occurs when functions are called by a vector of class with these configurations:
std::vector<myClass*> vect;
...
vect[i]->myFunction();
or
oneClass = vect[i];
oneClass->GetSubClass()->otherFunction();
It is the same problem with std::vector<...>::iterator
and (*..)
.
Doxygen does not take into account ]->
and )->
and so, does not link the associated functions.
My question is: Is there any versions of the tool where these bugs are fixed ?
We can skirt this problem by modifying the code by I prefer to have a automatic issue.
Thank,
Sulivan