What would be the best way to figure out all the calls made in a C ++ class? I would like to not only find all the calls, I want to find functions that are not called at all, so I can clear my code. I heard that doxygen can work wonders when it generates call schedules, but it seems that it only generates call schedules for my constructor and, like other functions, when I have more than necessary.
All my class functions have been documented.
source share