Is there a way in C++ to write a concrete class which when another class is derived from it, has a method which must be overriden. An abstract class allows the forcing of the de
One option is to put all the implementation of the class into an abstract superclass, and inherit from that instead.