I have an abstract C++ class with no constructor. It\'s supposed to be a base class so other classes can inherit from it. What I am trying to do is to declare a constant var
Why don't you make a protected constructor in the abstract base class and set the constant value there?