Специализация, которая сама по себе является шаблоном

У меня есть шаблонный класс, для которого я специализируюсь.
Но следующая специализация - это сам шаблон. Как это указать:

template<typename T>
class Action
{
    public: void doStuff()  { std::cout << "Generic\n"; }
}

// A specialization for a person
template<>
class Action<Person>
{
    public: void doStuff()  { std::cout << "A Person\n";}
}


// I can easily specialize for vectors of a particular type.
// But how  do I change the following so that it works with all types of vector.
// Not just `int`
template<>
class Action<std::vector<int> >
{
    public: void doStuff()  { std::cout << "A Generic Vector\n";}
}
10
задан Martin York 16 January 2012 в 07:21
поделиться