Hi,
Is it possible to have class template in non template class?
I'm trying something like this and I'm getting errors:
class Non_Template
{
//...other stuff
public:
template<class T>
class some_Template; //declaration
};
template<class T> //something WRONG with this syntax
Non_Template::some_Template
{
};
Err msg I'm getting:
error C2988: unrecognizable template declaration/definition
Thank you.