Question

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?

Was it helpful?

Solution

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;
}

OTHER TIPS

A specialization of this would, for example, be:

template<>
struct MyTemplate<std::auto_ptr> {
   // ...
};
Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top