| 7 | |
| 8 | |
| 9 | vector<string> string_split(string strin,char split){ |
| 10 | vector<string> retval; |
| 11 | stringstream ss(strin); |
| 12 | string token; |
| 13 | while (getline(ss,token, split)) |
| 14 | { |
| 15 | retval.push_back(token); |
| 16 | } |
| 17 | return retval; |
| 18 | }; |
| 19 | |
| 20 | uint64_t timeSinceEpochMillisec() { |
| 21 | using namespace std::chrono; |
no test coverage detected