MCPcopy Create free account
hub / github.com/OpenMS/OpenMS / toStringVector

Method toStringVector

src/openms/source/DATASTRUCTURES/ParamValue.cpp:613–620  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

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 {

Callers 4

loadMethod · 0.80
ParamValue.cppFile · 0.80

Calls

no outgoing calls

Tested by

no test coverage detected