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::string escapeMacro(std::string const &s);
29 
30 std::string toBinStr(size_t val, size_t margin);
31 
32 std::list<std::string> tokenize(const std::string &line, const char seperator = ' ', bool trimWhiteSpace = true);
33 
34 std::string spaceNormalize(const std::string &text);
35 
36 bool nameMatch(const std::string &eventDescs, const std::string &event);
37 
38 }
39 
40 #endif /* end of include guard: STRING_H_FD462039 */
Definition: Breakpoint.cpp:26