Got a quick question. Let's say I have the following shell of a template and a partial specialization of that template:
1 2 3 4 5 6 7 8 9 10 11
template<typename T, int param> class tmpl {
public:
// members
};
//partial template specialization
template<int param> class tmpl<double,param> {
public:
// members
tmpl();
};
I would like to define the constructor for the specialized template outside of the template prototype using the scope operator. What syntax is required to access this member?