#ifndef DERIVED_E #define DERIVED_E #include "AbstractBaseE.h" #include "AbstractBaseF.h" class CDerivedE: public CAbstractBaseE, public CAbstractBaseF { public: virtual void foo() { cout << "This is the foo of Derived Class E" << endl; } //... private: //... }; #endif