H
Hicham Mouline
hello,
template <typename M>
class V {
////
};
template <typename T>
class Md; // forward decl
template <typename T>
class V < Md<T> > {
};
In this order, is this a partial specialization of the primary template V
when the argument has the form
Md<T> ?
template <typename T>
class Md {
//definition
}
regards,
template <typename M>
class V {
////
};
template <typename T>
class Md; // forward decl
template <typename T>
class V < Md<T> > {
};
In this order, is this a partial specialization of the primary template V
when the argument has the form
Md<T> ?
template <typename T>
class Md {
//definition
}
regards,