#ifndef UTIL_H_ #define UTIL_H_ #include #include namespace noos { class utils { public: static std::vector tokenize(const std::string& str, std::string delimiters = " \r\n\t"); static std::vector tokenize_config(const std::string& str, std::string delimiters = " \r\n\t"); }; } #endif /*UTIL_H_*/