Sierra Toolkit  Version of the Day
tokenize.hpp
1 #ifndef STK_UTIL_UTIL_TOKENIZE_H
2 #define STK_UTIL_UTIL_TOKENIZE_H
3 
4 #include <string>
5 #include <vector>
6 
7 namespace stk_classic {
8 namespace util {
9 
14 void tokenize(const std::string& str, const std::string& separators,
15  std::vector<std::string>& tokens);
16 
17 }
18 }
19 
20 #endif
Sierra Toolkit.