I have a template base class.Lets say.
template class Base { private: int member1; char member2; .... };
I de
You need to prefix base member names with this-> or Base::, or add a using declaration to the class to unhide them. Their names are dependent names, and they are hidden.
this->
Base::
using