| 122 | } |
| 123 | |
| 124 | int IlluminanceMap_Impl::numberofYGridPoints() const { |
| 125 | boost::optional<int> value = getInt(OS_IlluminanceMapFields::NumberofYGridPoints, true); |
| 126 | OS_ASSERT(value); |
| 127 | return value.get(); |
| 128 | } |
| 129 | |
| 130 | bool IlluminanceMap_Impl::isNumberofYGridPointsDefaulted() const { |
| 131 | return isEmpty(OS_IlluminanceMapFields::NumberofYGridPoints); |
no test coverage detected