#ifndef _SolarSystem_h_ #define _SolarSystem_h_ #include #include // this line separates the two insertion points, so as to distinguish them! class Planet; class SolarSystem { private: std::vector _tpPlanets; public: SolarSystem(); ~SolarSystem(); // accessors: inline std::vector getPlanets() const { return _tpPlanets; } inline void setPlanets(std::vector tpPlanets) { _tpPlanets = tpPlanets; } // methods: private: SolarSystem(const SolarSystem&); SolarSystem& operator =(const SolarSystem&); }; #endif