I have a templated class called Auto. How would the constructor parameter list look, if I'm trying to do this in the main.cpp.

#define NUM_SCORES 10
Auto< int > num( new int[ NUM_SCORES ] );

Thanks for the help, I just don't know how to take a dynamic array as a parameter to my constructor.