I have the following relation of classes. I want to clone the class Derived, but I get the error \"cannot instantiate abstract class\". How I can clone the derived class? T
You can not instantiate a class which has a pure virtual function like this:
virtual void yourFunction() = 0
Make a subclass or remove it.