1 // tokenize.h 2 3 #ifndef TOKENIZE_H 4 #define TOKENIZE_H 5 6 void tokenize ( const std::string& text, std::vector<std::string>& tokens ); 7 8 #endif//TOKENIZE_H 9