S
Sharon
In my base call I need to write a pure virtual function in order to force the
derived classes to implement it.
The problem is that I cannot us an abstract method because the base class
itself cannot be abstract.
Also; a virtual function in not good enough, because the derived class may
not implement it.
So how can I write a pure virtual method in a non abstract and a non
interface class?
derived classes to implement it.
The problem is that I cannot us an abstract method because the base class
itself cannot be abstract.
Also; a virtual function in not good enough, because the derived class may
not implement it.
So how can I write a pure virtual method in a non abstract and a non
interface class?