summaryrefslogtreecommitdiffstats
path: root/test/src
diff options
context:
space:
mode:
authorStefan Radomski <github@mintwerk.de>2017-01-30 14:30:55 (GMT)
committerStefan Radomski <github@mintwerk.de>2017-01-30 14:30:55 (GMT)
commit7659ef059fa31c780f7c4e0fb028b9fb5b400030 (patch)
tree3a1705ae2e459e5a92cb1988ed160b5bde0d4e03 /test/src
parentaaec51ce3330a96f7a4f0f2ab0ca75f055223c67 (diff)
downloaduscxml-7659ef059fa31c780f7c4e0fb028b9fb5b400030.zip
uscxml-7659ef059fa31c780f7c4e0fb028b9fb5b400030.tar.gz
uscxml-7659ef059fa31c780f7c4e0fb028b9fb5b400030.tar.bz2
Unified DOM traversal and removed iostreams
Diffstat (limited to 'test/src')
-rw-r--r--test/src/test-extensions.cpp1
-rw-r--r--test/src/test-gen-c.cpp2
-rw-r--r--test/src/test-lifecycle.cpp2
-rw-r--r--test/src/test-utils.cpp2
-rw-r--r--test/src/test-validating.cpp1
5 files changed, 7 insertions, 1 deletions
diff --git a/test/src/test-extensions.cpp b/test/src/test-extensions.cpp
index 5b796c8..7024689 100644
--- a/test/src/test-extensions.cpp
+++ b/test/src/test-extensions.cpp
@@ -9,6 +9,7 @@
#include <chrono>
#include <mutex>
+#include <iostream>
using namespace uscxml;
class MyPausableDelayedEventQueue;
diff --git a/test/src/test-gen-c.cpp b/test/src/test-gen-c.cpp
index 7af121c..c75492a 100644
--- a/test/src/test-gen-c.cpp
+++ b/test/src/test-gen-c.cpp
@@ -6,6 +6,8 @@
#include <deque> // deque
#include <boost/algorithm/string.hpp> // trim
+#include <iostream>
+
#define USCXML_VERBOSE
#include "uscxml/config.h"
diff --git a/test/src/test-lifecycle.cpp b/test/src/test-lifecycle.cpp
index 59ef1d8..e948e3c 100644
--- a/test/src/test-lifecycle.cpp
+++ b/test/src/test-lifecycle.cpp
@@ -2,7 +2,7 @@
#include "uscxml/Interpreter.h"
#include "uscxml/interpreter/InterpreterMonitor.h"
#include "uscxml/interpreter/Logging.h"
-
+#include <iostream>
#include <boost/algorithm/string.hpp>
#include <xercesc/util/PlatformUtils.hpp>
diff --git a/test/src/test-utils.cpp b/test/src/test-utils.cpp
index dfeed04..7436015 100644
--- a/test/src/test-utils.cpp
+++ b/test/src/test-utils.cpp
@@ -12,6 +12,8 @@
#include "uscxml/interpreter/InterpreterImpl.h"
#include "uscxml/util/DOM.h"
+#include <iostream>
+
using namespace uscxml;
using namespace XERCESC_NS;
diff --git a/test/src/test-validating.cpp b/test/src/test-validating.cpp
index 7e0cc31..528812b 100644
--- a/test/src/test-validating.cpp
+++ b/test/src/test-validating.cpp
@@ -4,6 +4,7 @@
#include "uscxml/debug/InterpreterIssue.h"
#include "uscxml/interpreter/Logging.h"
#include <xercesc/util/PlatformUtils.hpp>
+#include <iostream>
uscxml::Factory* factory = NULL;