/*! * @file tokenzier.h * @brief Definition of Tokenizer * */ #ifndef _TOKENIZER_H #define _TOKENIZER_H #include #include //! A class to handle time itself class Tokenizer { public: static void tokenize(const std::string& str, std::vector& tokens, const std::string& delimiters = " "); }; #endif /* _TOKENIZER_H */