summaryrefslogtreecommitdiffstats
path: root/src/uscxml/util/String.h
diff options
context:
space:
mode:
authorStefan Radomski <github@mintwerk.de>2017-05-03 20:42:30 (GMT)
committerStefan Radomski <github@mintwerk.de>2017-05-03 20:42:30 (GMT)
commit4e3d3d466b1a98cb40e05e54067faf7050256ed5 (patch)
tree3213304f245db57ee5b181bf8c807e58d459e98d /src/uscxml/util/String.h
parentd3c26451c60e6f70a65f030f94d16105c0cb4f3a (diff)
downloaduscxml-4e3d3d466b1a98cb40e05e54067faf7050256ed5.zip
uscxml-4e3d3d466b1a98cb40e05e54067faf7050256ed5.tar.gz
uscxml-4e3d3d466b1a98cb40e05e54067faf7050256ed5.tar.bz2
Fixed issue 117
Diffstat (limited to 'src/uscxml/util/String.h')
-rw-r--r--src/uscxml/util/String.h16
1 files changed, 9 insertions, 7 deletions
diff --git a/src/uscxml/util/String.h b/src/uscxml/util/String.h
index 974db3b..464fbbd 100644
--- a/src/uscxml/util/String.h
+++ b/src/uscxml/util/String.h
@@ -20,20 +20,22 @@
#ifndef STRING_H_FD462039
#define STRING_H_FD462039
+#include "uscxml/Common.h"
+
#include <string>
#include <list>
namespace uscxml {
-std::string escapeMacro(std::string const &s);
-
-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 USCXML_API escapeMacro(std::string const &s);
+std::string USCXML_API toBinStr(size_t val, size_t margin);
-std::string spaceNormalize(const std::string &text);
+std::list<std::string> USCXML_API tokenize(const std::string &line,
+ const char seperator = ' ',
+ bool trimWhiteSpace = true);
-bool nameMatch(const std::string &eventDescs, const std::string &event);
+std::string USCXML_API spaceNormalize(const std::string &text);
+bool USCXML_API nameMatch(const std::string &eventDescs, const std::string &event);
}