Hi
I'm using Visual C++ .Net version 1.1,
but this might be a general C++ question really.
Say we have a base class A with a protected member function "f", and a derived class B with some member function "g".
Now inside "g", I can access "f" for the "this" pointer, in other words:
f();
or...