Simple question; right now I have something like this:
typedef void(*MyFunctionPointer)(int);
typedef std::vector < MyFunctionPointer > MyFunctionPointerContainer;
However, I want to typedef this container in one row, skipping the first typedef, how can I do this?