I'm trying to get an inheritance system down with a base abstract class and a bunch of classes derived from this one class.
The abstract class has a protected boolean, and when one particular type of derived class is constructed, I want the boolean to be set to false. However, when I do this, I get an "unresolved external" error, and I'm not quite sure what that means.
Also, I want to make sure I have the concepts down: derived classes do not inherit constructors, but they can have their own constructors that can mess around with anything declared protected or public in the derived class, correct?
Thanks so much! Your help is much, much appreciated.