* Initializes a city with certain data. * @param name Name of the city. * @param lon Longitude of the city. * @param lat Latitude of the city. */
| 30 | * @param lat Latitude of the city. |
| 31 | */ |
| 32 | City::City(const std::string &name, double lon, double lat): _name(name), _lon(lon), _lat(lat) |
| 33 | { |
| 34 | } |
| 35 | |
| 36 | /** |
| 37 | * |
nothing calls this directly
no outgoing calls
no test coverage detected