summaryrefslogtreecommitdiffstats
path: root/src/uscxml/server
diff options
context:
space:
mode:
authorStefan Radomski <radomski@tk.informatik.tu-darmstadt.de>2014-06-27 22:32:46 (GMT)
committerStefan Radomski <radomski@tk.informatik.tu-darmstadt.de>2014-06-27 22:32:46 (GMT)
commitc70d02010ea99e6c8e35da3b767f41f1ee5dce56 (patch)
treea0ef030204ec2eb656845d03876006d9cdc0760c /src/uscxml/server
parenta4b506fd774ec50ad79b7531bd3698c5a6339407 (diff)
downloaduscxml-c70d02010ea99e6c8e35da3b767f41f1ee5dce56.zip
uscxml-c70d02010ea99e6c8e35da3b767f41f1ee5dce56.tar.gz
uscxml-c70d02010ea99e6c8e35da3b767f41f1ee5dce56.tar.bz2
Major header movement
- Used IWYU to reorganize headers - Dropped PHP support - Updated tests
Diffstat (limited to 'src/uscxml/server')
-rw-r--r--src/uscxml/server/InterpreterServlet.cpp1
-rw-r--r--src/uscxml/server/InterpreterServlet.h5
2 files changed, 4 insertions, 2 deletions
diff --git a/src/uscxml/server/InterpreterServlet.cpp b/src/uscxml/server/InterpreterServlet.cpp
index 3c5c3a0..f90d111 100644
--- a/src/uscxml/server/InterpreterServlet.cpp
+++ b/src/uscxml/server/InterpreterServlet.cpp
@@ -20,6 +20,7 @@
#include "InterpreterServlet.h"
#include "uscxml/Interpreter.h"
#include <glog/logging.h>
+#include <DOM/io/Stream.hpp>
namespace uscxml {
diff --git a/src/uscxml/server/InterpreterServlet.h b/src/uscxml/server/InterpreterServlet.h
index 960ff8f..436574b 100644
--- a/src/uscxml/server/InterpreterServlet.h
+++ b/src/uscxml/server/InterpreterServlet.h
@@ -21,11 +21,12 @@
#define INTERPRETERSERVLET_H_XQLWNMH4
#include "HTTPServer.h"
-#include "uscxml/Factory.h"
+#include "uscxml/messages/SendRequest.h" // for SendRequest
+#include "uscxml/plugins/IOProcessor.h" // for IOProcessorImpl
namespace uscxml {
-class Interpreter;
+class InterpreterImpl;
class InterpreterHTTPServlet : public HTTPServlet, public IOProcessorImpl {
public: