I have a class which is something like this:
template<int SIZE>
class MyClass{
public:
MyClass(int a, int b){}
}
and I want another class to have an instance of MyClass:
class X{
MyClass<10>?? // How do I pass values to constructor args a and b?
}
but I am unsure how to pass the arguments in to the two-argument constructor when declaring the object as a member variable?