In C++, can member function pointers be used to point to derived (or even base) class members?
EDIT: Perhaps an example will help. Suppose we have a hierarchy of t
You might want to check out this article Member Function Pointers and the Fastest Possible C++ Delegates The short answer seems to be yes, in some cases.