#include "City.h" City::City() : name_m("C_default") {} City::City(const std::string& name) : name_m(name) {} std::string City::getName() const { return name_m; } void City::printCity() const { std::cout << name_m << std::endl; }