00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019 #include "../library.h"
00020 #ifndef UTILS_H
00021 #define UTILS_H
00022
00023 class Utils{
00024 public:
00025 Utils();
00026 ~Utils();
00027 void Tokenize(const std::string& str, std::vector<std::string>& tokens, const std::string& delimiters = "&");
00028 void TokenizeFirst(const std::string& str, std::vector<std::string>& tokens, const std::string& delimiters = "=");
00029 };
00030
00031 #endif