| 115 | } |
| 116 | |
| 117 | boost::optional<AlfalfaPoint> AlfalfaJSON::exposeOutputVariable(const std::string& variable_key, const std::string& variable_name, |
| 118 | const std::string& display_name) { |
| 119 | return exposeFromComponent(AlfalfaOutputVariable{variable_key, variable_name}, display_name); |
| 120 | } |
| 121 | |
| 122 | boost::optional<AlfalfaPoint> AlfalfaJSON::exposeGlobalVariable(const std::string& variable_name, const std::string& display_name) { |
| 123 | return exposeFromComponent(AlfalfaGlobalVariable{variable_name}, display_name); |