nosibar: acceptable code tags are [code=cplusplus] ... [/code]
The way to call base class from derived
void DERIVED::Method()
{
BASE::Method(); // call Method() is base class.
}
Note that its not necessary to pass the this pointer because that is passed by default.