In C++, it\'s possible to get a pointer to a (non-static) member function of a class, and then later invoke it on an object. If the function was virtual, the call is dispatc
It's possible in GCC, but the way it's documented in C++ language extensions section suggests there's no portable way to do it.
You can do two things: