#ifndef _Earth_h_ #define _Earth_h_ #include "Planet.h" #include #include // this line separates the two insertion points, so as to distinguish them! class Earth : public Planet { private: std::vector _tsCountryNames; public: Earth(); ~Earth(); // accessors: inline std::vector getCountryNames() const { return _tsCountryNames; } inline void setCountryNames(std::vector tsCountryNames) { _tsCountryNames = tsCountryNames; } // methods: private: Earth(const Earth&); Earth& operator =(const Earth&); }; #endif