| 62 | } |
| 63 | |
| 64 | std::string PythonPluginOutputVariable_Impl::updateFrequency() const { |
| 65 | boost::optional<std::string> value = getString(OS_PythonPlugin_OutputVariableFields::UpdateFrequency, true); |
| 66 | OS_ASSERT(value); |
| 67 | return value.get(); |
| 68 | } |
| 69 | |
| 70 | boost::optional<std::string> PythonPluginOutputVariable_Impl::units() const { |
| 71 | return getString(OS_PythonPlugin_OutputVariableFields::Units, true); |