How to call a parent class function from derived class function?
I’ll take the risk of stating the obvious: You call the function, if it’s defined in the base class it’s automatically available in the derived class (unless it’s private). If there is a function with the same signature in the derived class you can disambiguate it by adding the base class’s name followed by two colons base_class::foo(…). … Read more