Well, as I stated in the question: pointers to members methods
My question: msvc++ is throwing me errors.
If we have:
class A 
{
    bool one, two;
    typedef void (A::* RunPtr)(int);
public:
    RunPtr Run;
    A() : one(false), two(false)
    {
        Run = &A::RunOff;
    }
    void SetOne(bool value)
    {
        one = value;
    }
    void SetTwo(bool value)
    {
        two = value;
    }
    void SetOnOrOff()
    {
        if (one || two)
            Run = &A::RunOn;
        else
            Run = &A::RunOff;
    }
    void RunOn(int param)
    {
        //RunOn stuff here
        cout << "RunOn: " << param << endl;
    }
    void RunOff(int param)
    {
        //RunOff stuff here
        cout << "RunOff: " << param << endl;
    }
};
Now I want to call, the public Run ptr from outside the class.
Say:
A a = new A();
a->*Run(10);    // notice that 10 is an int
I have tried two ways:
a->Run(10)      // Option 1
a->*Run(10)     // Option 2
Option 1 throws me
term does not evaluate to a function taking 1 arguments
Option 2 throws me
function does not take 1 argument
These two errors doesn't let me call the method pointer.