// Project Derived // File base.cpp #include class Base { private: string base_data_member; public: Base(); Base(string); ~Base(); };