#ifndef CITY_H #define CITY_H #include #include class City { private: std::string name_m; public: // Constructors City(); City(const std::string& name); // Getters std::string getName() const; // Others void printCity() const; }; #endif // CITY_H