How does a children class Child inherits all the constructors of from its parent class Parent ?
Child
Parent
Every constructor is inherited by default, if only no constructor is redefined
By redefining every constructor (C++ is a complex language for a reason ...)
By using the statement using Parent::Parent; in the Child class definition
using Parent::Parent;
By declaring all constructor virtual in the Parent class
virtual