etc/compptr2.cpp

The following code example is taken from the book
Object-Oriented Programming in C++
by Nicolai M. Josuttis, Wiley, 2002
© Copyright Nicolai M. Josuttis 2002


#include <iostream>

class MyClass {
  public:
    void func1() {
        std::cout << "call of func1()" << std::endl;
    }
    void func2() {
        std::cout << "call of func2()" << std::endl;
    }
};

// type: pointer to member function of class MyClass
//     without parameter and return value
typedef void (MyClass::*MyClassFunction)();

// exported object and exported member function
void* objPtr;
void* objfpPtr;

void exportObjectAndFunction(void* op, void* fp)
{
    objPtr = op;
    objfpPtr = fp;
}

void callMyClassFunc(void* op, void* fp)
{
    // cast types back to original type
    MyClass* myObjPtr = static_cast<MyClass*>(op);
    MyClassFunction* myFuncPtr
                      = static_cast<MyClassFunction*>(fp);

    // call passed member function for the passed object
    (myObjPtr->*(*myFuncPtr))();
}

int main()
{
    // object of class MyClass
    MyClass x;

    // pointer to member function of class MyClass
    MyClassFunction funcPtr;

    // pointer to member refers to func1()
    funcPtr = & MyClass::func1;

    // export object and member function
    exportObjectAndFunction(&x, &funcPtr);

    // call exported member function for exported object
    callMyClassFunc(objPtr, objfpPtr);
}