views:

65

answers:

1

I have an approach to call delayed function for class:

//in MyClass declaration:
typedef void (MyClass::*IntFunc) (int value);
void DelayedFunction (IntFunc func, int value, float time);
class TFunctorInt
{
public:
    TFunctorInt (MyClass* o, IntFunc f, int v) : obj (o), func (f), value (v) {}
    virtual void operator()();
protected:
    MyClass* obj;
    IntFunc func;
    int value;
};
//in MyClass.cpp file:
void MyClass::DelayedFunction (IntFunc func, int value, float time)
{
    TFunctorBase* functor = new TFunctorInt (this, func, value);
    DelayedFunctions.push_back (TDelayedFunction (functor, time)); // will be called in future
}
void MyClass::TFunctorInt::operator()()
{
    ((*obj).*(func)) (value);
}

I want to make templated functor. And the first problem is that:

template <typename T>
typedef void (MyClass::*TFunc<T>) (T param);

Causes compiler error: "template declaration of 'typedef'". What may be a solution?

PS: The code based on http://www.coffeedev.net/c++-faq-lite/en/pointers-to-members.html#faq-33.5

+6  A: 

There are no template typedefs in C++. There is such an extension in C++0x. In the meantime, do

template <typename T>
struct TFunc
{
    typedef void (MyClass::*type)(T param);
};

and use TFunc<T>::type (prefixed with typename if in a dependant context) whenever you would have used TFunc<T>.

Alexandre C.
`+1` for being 36secs faster than me! `:)`
sbi
haha, +1 for the same thing
Diego Sevilla
Seems not working... The compiler shows an error: "expected `)' before '<' token" in "typedef void (MyClass::*type<T>)(T param);"I tried to remove <T> in the line ("(MyClass::*type)(T param)"), the error appears in "void DelayedFunction (TFunc<T>::type func, T param, float time);" - "expected `)' before 'func'"... I don't understand the reason of errors.
brigadir
@brigadir: corrected.
Alexandre C.