summaryrefslogtreecommitdiffstats
path: root/src/uscxml/util/String.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/uscxml/util/String.h')
-rw-r--r--src/uscxml/util/String.h11
1 files changed, 8 insertions, 3 deletions
diff --git a/src/uscxml/util/String.h b/src/uscxml/util/String.h
index 8d9c9ef..974db3b 100644
--- a/src/uscxml/util/String.h
+++ b/src/uscxml/util/String.h
@@ -26,9 +26,14 @@
namespace uscxml {
std::string escapeMacro(std::string const &s);
-std::list<std::string> tokenize(const std::string& line, const char seperator = ' ', bool trimWhiteSpace = true);
-std::string spaceNormalize(const std::string& text);
-bool nameMatch(const std::string& eventDescs, const std::string& event);
+
+std::string toBinStr(size_t val, size_t margin);
+
+std::list<std::string> tokenize(const std::string &line, const char seperator = ' ', bool trimWhiteSpace = true);
+
+std::string spaceNormalize(const std::string &text);
+
+bool nameMatch(const std::string &eventDescs, const std::string &event);
}