“Cannot allocate an object of abstract type” error
In C++ a class with at least one pure virtual function is called abstract class. You can not create objects of that class, but may only have pointers or references to it. If you are deriving from an abstract class, then make sure you override and define all pure virtual functions for your class. From … Read more