| 629 | } |
| 630 | |
| 631 | std::vector<double> ParamValue::toDoubleVector() const { |
| 632 | if (value_type_ != DOUBLE_LIST) |
| 633 | { |
| 634 | throw Exception::ConversionError(__FILE__, __LINE__, OPENMS_PRETTY_FUNCTION, "Could not convert non-std::vector<double> ParamValue to std::vector<double>"); |
| 635 | } |
| 636 | return *(data_.dou_list_); |
| 637 | } |
| 638 | |
| 639 | bool ParamValue::toBool() const |
| 640 | { |
no outgoing calls
no test coverage detected