Having trouble inheriting from a base class, where the base class has a custom constructor (one or more params), and the derived class does not.
Even if I change the derived class constructor to match params.
Solution?
Even if I change the derived class constructor to match params.
Solution?
Since the base has a constructor, it's relevant to feed this data in the derived constructor. The definition of the derived constructor should be expanded:
void base: X,Y
void derived: X,Y,Z : X,Y
or actually you will need this:
void derived: : 0,0