| 611 | } |
| 612 | |
| 613 | std::vector<std::string> ParamValue::toStringVector() const |
| 614 | { |
| 615 | if (value_type_ != STRING_LIST) |
| 616 | { |
| 617 | throw Exception::ConversionError(__FILE__, __LINE__, OPENMS_PRETTY_FUNCTION, "Could not convert non-std::vector<std::string> ParamValue to std::vector<std::string>"); |
| 618 | } |
| 619 | return *(data_.str_list_); |
| 620 | } |
| 621 | |
| 622 | std::vector<int> ParamValue::toIntVector() const |
| 623 | { |
no outgoing calls
no test coverage detected