Quote Originally Posted by Eri523 View Post
First note that you can only typedef a function pointer, not the function itself.
I'm pretty sure you can:

Code:
typedef int Function(int,double);
//...
Function* m_function;