A
Andy White
If I want a pointer to a function that returns void and takes as it's
arguments a pointer to a templatized type and a const int, does this need to
be declaired in global scope? I'm not sure of the syntax with the template
part..
template <class T>
void (*f)(T *, const int);
thanks.
arguments a pointer to a templatized type and a const int, does this need to
be declaired in global scope? I'm not sure of the syntax with the template
part..
template <class T>
void (*f)(T *, const int);
thanks.