summaryrefslogtreecommitdiffstats
path: root/src/uscxml
diff options
context:
space:
mode:
authorStefan Radomski <github@mintwerk.de>2016-12-12 20:59:18 (GMT)
committerStefan Radomski <github@mintwerk.de>2016-12-12 20:59:18 (GMT)
commite7747902e509cdbf895af3a7bc2025fe8193e3f7 (patch)
tree19ce2a4d5994ae95f7375e283d148affb501d5c7 /src/uscxml
parent5d944642883e1f8951f1c2df5b7d72d06b5daee7 (diff)
downloaduscxml-e7747902e509cdbf895af3a7bc2025fe8193e3f7.zip
uscxml-e7747902e509cdbf895af3a7bc2025fe8193e3f7.tar.gz
uscxml-e7747902e509cdbf895af3a7bc2025fe8193e3f7.tar.bz2
Reduced header dependencies
Diffstat (limited to 'src/uscxml')
-rw-r--r--src/uscxml/interpreter/Logging.h2
-rw-r--r--src/uscxml/plugins/Factory.h1
-rw-r--r--src/uscxml/util/Convenience.cpp20
-rw-r--r--src/uscxml/util/Convenience.h20
4 files changed, 21 insertions, 22 deletions
diff --git a/src/uscxml/interpreter/Logging.h b/src/uscxml/interpreter/Logging.h
index 7221d5b..b139211 100644
--- a/src/uscxml/interpreter/Logging.h
+++ b/src/uscxml/interpreter/Logging.h
@@ -20,9 +20,7 @@
#ifndef LOGGING_H_3B1A3A0F
#define LOGGING_H_3B1A3A0F
-#include "uscxml/config.h"
#include "uscxml/Common.h"
-
#include "uscxml/messages/Data.h"
#include "uscxml/messages/Event.h"
diff --git a/src/uscxml/plugins/Factory.h b/src/uscxml/plugins/Factory.h
index e0015b5..f80b581 100644
--- a/src/uscxml/plugins/Factory.h
+++ b/src/uscxml/plugins/Factory.h
@@ -34,7 +34,6 @@
#include "Pluma/Pluma.hpp"
#endif
-#include <string>
#include <memory>
#include <set>
#include <limits>
diff --git a/src/uscxml/util/Convenience.cpp b/src/uscxml/util/Convenience.cpp
index 7ceb875..a0263d2 100644
--- a/src/uscxml/util/Convenience.cpp
+++ b/src/uscxml/util/Convenience.cpp
@@ -23,6 +23,26 @@
namespace uscxml {
+NumAttr::NumAttr(const std::string& str) {
+ size_t valueStart = str.find_first_of("0123456789.");
+ if (valueStart != std::string::npos) {
+ size_t valueEnd = str.find_last_of("0123456789.");
+ if (valueEnd != std::string::npos) {
+ value = str.substr(valueStart, (valueEnd - valueStart) + 1);
+ size_t unitStart = str.find_first_not_of(" \t", valueEnd + 1);
+ if (unitStart != std::string::npos) {
+ size_t unitEnd = str.find_last_of(" \t");
+ if (unitEnd != std::string::npos && unitEnd > unitStart) {
+ unit = str.substr(unitStart, unitEnd - unitStart);
+ } else {
+ unit = str.substr(unitStart, str.length() - unitStart);
+ }
+ }
+ }
+ }
+}
+
+
bool isnan(double x) {
return x != x;
}
diff --git a/src/uscxml/util/Convenience.h b/src/uscxml/util/Convenience.h
index 532bcc0..cb4416d 100644
--- a/src/uscxml/util/Convenience.h
+++ b/src/uscxml/util/Convenience.h
@@ -45,25 +45,7 @@ template <typename T> T strTo(std::string tmp) {
class USCXML_API NumAttr {
public:
- NumAttr(const std::string& str) {
- size_t valueStart = str.find_first_of("0123456789.");
- if (valueStart != std::string::npos) {
- size_t valueEnd = str.find_last_of("0123456789.");
- if (valueEnd != std::string::npos) {
- value = str.substr(valueStart, (valueEnd - valueStart) + 1);
- size_t unitStart = str.find_first_not_of(" \t", valueEnd + 1);
- if (unitStart != std::string::npos) {
- size_t unitEnd = str.find_last_of(" \t");
- if (unitEnd != std::string::npos && unitEnd > unitStart) {
- unit = str.substr(unitStart, unitEnd - unitStart);
- } else {
- unit = str.substr(unitStart, str.length() - unitStart);
- }
- }
- }
- }
- }
-
+ NumAttr(const std::string& str);
std::string value;
std::string unit;
};