Possible Duplicate:
How to use base class's constructors and assignment operator in C++?
class A
{
protected:
void f();
}
class B : public A
{
protected:
void f()
{
A::f();
}
}
We can use the function of parent class in this way, but I don't know how to use the operator of parent class.