| 68 | } |
| 69 | |
| 70 | std::string WeatherFile_Impl::stateProvinceRegion() const { |
| 71 | boost::optional<std::string> value = getString(OS_WeatherFileFields::StateProvinceRegion, true); |
| 72 | OS_ASSERT(value); |
| 73 | return value.get(); |
| 74 | } |
| 75 | |
| 76 | std::string WeatherFile_Impl::country() const { |
| 77 | boost::optional<std::string> value = getString(OS_WeatherFileFields::Country, true); |