Dynamic type information requirements for all API base->subclasses

Issue #71 resolved
Samir Menon repo owner created an issue
class Super{
public:
Super(const std::string& type_name) : SObject(type_name){}
private:
Super();
};

class SubOfSuper{
public:
SubOfSuper() : Super(std::string("SubOfSuper")){}
}

Forces specifying dynamic type information.

Comments (4)

  1. Log in to comment