Storm 1.11.1.1
A Modern Probabilistic Model Checker
Loading...
Searching...
No Matches
CSVParser.h
Go to the documentation of this file.
1#pragma once
2
3#include <string>
4#include <vector>
5
6namespace storm {
7namespace parser {
11std::vector<std::string> parseCommaSeperatedValues(std::string const& input);
12
13} // namespace parser
14} // namespace storm
std::vector< std::string > parseCommaSeperatedValues(std::string const &input)
Given a string separated by commas, returns the values.
Definition CSVParser.cpp:11