You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

12 lines
272 B

  1. #include <vector>
  2. #include <string>
  3. namespace storm {
  4. namespace parser {
  5. /**
  6. * Given a string seperated by commas, returns the values.
  7. */
  8. std::vector<std::string> parseCommaSeperatedValues(std::string const& input);
  9. }
  10. }