template <class TYPE>
class base{
public:
TYPE in;
void func()=0;
};
I want to create a derived class of base class, whose TYPE is int. Is this possible ?
So the derived class shouldn't be a template class anymore.I hope you understand my question...
Something like this: