A template template specification is like this:

template < template < class > class T >
struct MyTemplate
{
};

How am I supposed to create a total (or partial) specialization for this template? Is this possible?

link|improve this question

1  
...Somewhere exciting! I can't wait! – John Dibling Aug 13 '10 at 16:46
Who in the world voted to close, and why? This seems to be a perfectly legitimate, topical question. – Jerry Coffin Aug 13 '10 at 16:51
@Jerry: If you saw the first 30 seconds of the question (where the vote was cast), it would make sense. It was just the code up to { with no question. I made the comment: "}; // where are you going with this?" to which @John replied. But it's fixed now. :) – GManNickG Aug 13 '10 at 16:54
@GMan: Oh, okay. – Jerry Coffin Aug 13 '10 at 16:57
@Jerry Somehow half of my question didn't showed up.. My mistake, sorry. – scooterman Aug 13 '10 at 16:57
show 5 more comments
feedback

2 Answers

up vote 5 down vote accepted

Like this:

#include <iostream>

template <typename T>
struct foo{};

template <typename T>
struct bar{};

template < template < class > class T >
struct MyTemplate
{
    static const bool value = false;
};

template <>
struct MyTemplate<bar>
{
    static const bool value = true;
};


int main(void)
{
    std::cout << std::boolalpha;
    std::cout << MyTemplate<foo>::value << std::endl;
    std::cout << MyTemplate<bar>::value << std::endl;
}
link|improve this answer
GMan, there is a way to enforce on MyTemplate specialization what kind ot T bar should expect? – scooterman Aug 13 '10 at 17:02
@scooterman: Well in your class you'd just use bar<T> and it'll work or not. If I'm understanding your question correctly. – GManNickG Aug 13 '10 at 17:35
feedback

A specialization of this would, for example, be:

template<>
struct MyTemplate<std::auto_ptr> {
   // ...
};
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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