I have a template class that I have some specializations for.
But the next specialization is a template itself. How do you specify this:

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";}
}
link|improve this question

2  
I'm just wondering that you don't know this! – Nawaz Jan 16 at 8:16
@Nawaz: my thought as well, a late night perhaps ? – Matthieu M. Jan 16 at 8:24
Now that I see the answer it is obvious, but I kept adding another template line in their. – Loki Astari Jan 16 at 18:47
feedback

1 Answer

up vote 17 down vote accepted

Trivial partial specialization ?

template <typename T>
class Action<std::vector<T>> {
public:
  void doStuff() { std::cout << "A Generic Vector\n"; }
};
link|improve this answer
2  
+1. Sometimes (often?) the obvious answer is the right answer :) – ereOn Jan 16 at 8:02
@ereOn: the real question is --> why do I get so many votes for such a trivial answer :x ? – Matthieu M. Jan 16 at 8:24
2  
I guess people just love simplicity :) – ereOn Jan 16 at 8:27
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.