I have an abstract class, and its derived classes.
I want to have a member (i.e. fDerivedName) at the abstract class with the name of the derived class.
In the constructor of each derived class I do :
fDerivedName = this->ClassName();
There is a way to avoid the re-implementation of this in each derived class?
Thanks