Hello,

I have a C++/IDE question, let's say I have a class ABC which defines a method
Code:
ABC::mandatoryMethod(...){}
as the name of the function suggests all classes need to define it. Now, how do you guy search for all calls to that mandatoryMethod on this particular class ABC?
Since this methods is common for all classes we will get plenty of search results.... I wonder if there is a clever way to get only those of our interest (called on class ABC)


Regards,
Martin