summaryrefslogtreecommitdiffstats
path: root/src/uscxml/server/InterpreterServlet.h
diff options
context:
space:
mode:
authorStefan Radomski <radomski@tk.informatik.tu-darmstadt.de>2013-11-16 16:45:34 (GMT)
committerStefan Radomski <radomski@tk.informatik.tu-darmstadt.de>2013-11-16 16:45:34 (GMT)
commita5b2c2081329958710a59107854349f5b6a14bcb (patch)
treecd4724968c4eb865db853450ebab19094ca6d6dc /src/uscxml/server/InterpreterServlet.h
parent22ddb37efb48c484e022fef5516491ad69608397 (diff)
downloaduscxml-a5b2c2081329958710a59107854349f5b6a14bcb.zip
uscxml-a5b2c2081329958710a59107854349f5b6a14bcb.tar.gz
uscxml-a5b2c2081329958710a59107854349f5b6a14bcb.tar.bz2
Builds on windows again
Diffstat (limited to 'src/uscxml/server/InterpreterServlet.h')
-rw-r--r--src/uscxml/server/InterpreterServlet.h16
1 files changed, 8 insertions, 8 deletions
diff --git a/src/uscxml/server/InterpreterServlet.h b/src/uscxml/server/InterpreterServlet.h
index 46cc737..0315598 100644
--- a/src/uscxml/server/InterpreterServlet.h
+++ b/src/uscxml/server/InterpreterServlet.h
@@ -83,21 +83,21 @@ public:
InterpreterWebSocketServlet() {};
InterpreterWebSocketServlet(InterpreterImpl* interpreter);
virtual ~InterpreterWebSocketServlet() {}
-
+
virtual boost::shared_ptr<IOProcessorImpl> create(InterpreterImpl* interpreter);
-
+
virtual std::set<std::string> getNames() {
std::set<std::string> names;
names.insert("websocket");
names.insert("http://www.w3.org/TR/scxml/#WebSocketEventProcessor");
return names;
}
-
+
Data getDataModelVariables();
virtual void send(const SendRequest& req);
-
+
virtual bool wsRecvRequest(struct evws_connection *conn, const HTTPServer::WSFrame& frame);
-
+
std::string getPath() {
return _path;
}
@@ -117,15 +117,15 @@ public:
tthread::recursive_mutex& getMutex() {
return _mutex;
}
-
+
protected:
InterpreterImpl* _interpreter;
-
+
tthread::recursive_mutex _mutex;
std::map<std::string, struct evws_connection*> _requests;
std::string _path;
std::string _url;
-
+
};
}