//============================================================================ // Author : Sven Göthel // Copyright : 2022 Göthel Software e.K. // License : MIT // Description : C++ Lesson 2.3 OOP (inheritance w/ virtual function call in ctor/dtor) //============================================================================ #include #include using namespace std; class base_base_dog { public: base_base_dog() { cout<< "base_dog::ctor begin" <