Suppose a C++ method overrides a base class's method, then how to jump to the definition/declaration of the base method from the source of method? (e.g. pop up a window to show a list of base methods that it overrides)
Asked
Active
Viewed 38 times
0
-
use ParentClass::methodOverrided(params...); see here : https://stackoverflow.com/questions/672373/can-i-call-a-base-classs-virtual-function-if-im-overriding-it – Eric Nov 07 '19 at 08:10
-
@ Eric The question is about how to use VS2017 – jw_ Nov 07 '19 at 11:59