Hi everyone. I completely forgot how to access base class functions, even if I overload it, is it using the :: operator?
Code:
class Base{
protected:
    void f();
};

class Inh : public Base{
public:
    void f(){
        //do new stuff here
        //call Base::f()
    }
    
};
Thanks any help!