| 116 | } |
| 117 | |
| 118 | std::vector<std::string> SplitString(const std::string& str, const std::string& delim) { |
| 119 | std::vector<std::string> tokens; |
| 120 | boost::split(tokens, str, boost::is_any_of(delim)); |
| 121 | return tokens; |
| 122 | } |
| 123 | |
| 124 | std::vector<std::string> StringSpliter(const std::string& str, const std::string& delim) { |
| 125 | std::vector<std::string> tokens; |
no outgoing calls