00001 // -*- c++ -*- 00002 #ifndef HT_UTIL_STRING_H 00003 #define HT_UTIL_STRING_H 00004 00005 #include <string> 00006 #include <vector> 00007 00008 namespace ht { 00009 namespace utils { 00010 int split(const std::string& input, 00011 const std::string& delimiter, 00012 std::vector<std::string>& results); 00013 } 00014 } 00015 00016 #endif
1.5.2