I want to call a specific operator of specific base class of some class. For simple functions it\'s easy: I just write SpecificBaseClass::function( args );. How sho
SpecificBaseClass::function( args );
Can't you just say
c = b + a;