|
Sierra Toolkit
Version of the Day
|
00001 #ifndef STK_UTIL_UTIL_TOKENIZE_H 00002 #define STK_UTIL_UTIL_TOKENIZE_H 00003 00004 #include <string> 00005 #include <vector> 00006 00007 namespace stk_classic { 00008 namespace util { 00009 00014 void tokenize(const std::string& str, const std::string& separators, 00015 std::vector<std::string>& tokens); 00016 00017 } 00018 } 00019 00020 #endif