допустим, у меня есть шаблонный класс
template <typename T>
struct Widget
{
//generalized implementation
}
но я хотел полностью специализироваться ..
для шаблона, который принял параметр?
template <>
struct Widget< TemplateThatAcceptsParameter<N> >
{
//implementation for Widget for TemplateThatAcceptsParameterN
//which takes parameter N
}
Как можно это сделать?