00001 #ifndef QRK_SPLIT_H 00002 #define QRK_SPLIT_H 00003 00013 #include <vector> 00014 #include <string> 00015 00016 00017 namespace qrk 00018 { 00029 size_t split(std::vector<std::string>& tokens, 00030 const std::string& original, const char* split_pattern = " \t", 00031 bool continious_pattern = true); 00032 } 00033 00034 #endif /* !QRK_SPLIT_H */
1.7.6.1-20120122