| 62 | } |
| 63 | |
| 64 | std::string WeatherFile_Impl::city() const { |
| 65 | boost::optional<std::string> value = getString(OS_WeatherFileFields::City, true); |
| 66 | OS_ASSERT(value); |
| 67 | return value.get(); |
| 68 | } |
| 69 | |
| 70 | std::string WeatherFile_Impl::stateProvinceRegion() const { |
| 71 | boost::optional<std::string> value = getString(OS_WeatherFileFields::StateProvinceRegion, true); |