blob: 0f1022443917cb02356744df5ddad6381b63050d [file] [log] [blame]
template<typename T, template<typename> class SpecialClass>
class Example
{
// Copy constructor with other variants of Example
template<template<typename> class OtherSpecialClass>
Example(const Example<T, OtherSpecialClass>& other)
{
// do something useful here
}
/** The normal member var based on the template arguments */
SpecialClass<T> memberVar;
};