I'm simply trying to convert my current typedef:
typedef void (Foo::*CallbackName)(int arg);
Into a function alias, which I have looking like:
template <class T>
using T_CallbackName = void(T::*CallbackName)(int arg);
Is this correct? Alias declarations seem straightforward, but function typedefs have weird syntax, and it's not clear to me how to template them.