| 51 | } |
| 52 | |
| 53 | static vector<string> SplitComma (const string & line) |
| 54 | { |
| 55 | vector<string> tok; |
| 56 | std::stringstream ss(line); |
| 57 | string item; |
| 58 | while (std::getline(ss, item, ',')) |
| 59 | tok.push_back(Trim(item)); |
| 60 | return tok; |
| 61 | } |
| 62 | |
| 63 | static map<string,string> ParseParams (const vector<string> & tok) |
| 64 | { |
no test coverage detected