calling base class func from derived class

if there is a base class has a function "abc()" and a derived class overrides it. How can we call the base class abc() from the derived class abc()?




void my_derived::abc()
{
my_base::abc();
}

Topic archived. No new replies allowed.