I would like to make typedef for function pointer which has stl container as argument and this container has unknown type. Something like this:
typedef void (* TouchCallBack)(GLRenderer*, const MotionEvent&, std::vector<T >);
it's possible? (especially in c++ 03)