| 55 | } |
| 56 | |
| 57 | std::string TableIndependentVariable_Impl::extrapolationMethod() const { |
| 58 | boost::optional<std::string> value = getString(OS_Table_IndependentVariableFields::ExtrapolationMethod, true); |
| 59 | OS_ASSERT(value); |
| 60 | return value.get(); |
| 61 | } |
| 62 | |
| 63 | boost::optional<double> TableIndependentVariable_Impl::minimumValue() const { |
| 64 | return getDouble(OS_Table_IndependentVariableFields::MinimumValue, true); |