String.h
Go to the documentation of this file.
1 
20 #ifndef STRING_H_FD462039
21 #define STRING_H_FD462039
22 
23 #include <string>
24 #include <list>
25 
26 namespace uscxml {
27 
28 std::list<std::string> tokenize(const std::string& line, const char seperator = ' ', bool trimWhiteSpace = true);
29 std::string spaceNormalize(const std::string& text);
30 bool nameMatch(const std::string& eventDescs, const std::string& event);
31 
32 }
33 
34 #endif /* end of include guard: STRING_H_FD462039 */
Definition: InterpreterIssue.cpp:33