summaryrefslogtreecommitdiffstats
path: root/src/uscxml/plugins/invoker/http/HTTPServletInvoker.h
diff options
context:
space:
mode:
authorStefan Radomski <radomski@tk.informatik.tu-darmstadt.de>2013-03-22 23:47:42 (GMT)
committerStefan Radomski <radomski@tk.informatik.tu-darmstadt.de>2013-03-22 23:47:42 (GMT)
commit79b8a7941354416f83aae9cb53fbdf7e680beae2 (patch)
tree4eb3be0cf17403cf825f3050d9443fb536034946 /src/uscxml/plugins/invoker/http/HTTPServletInvoker.h
parente9bd7e313c80ccdabc52757266177363c7638caf (diff)
downloaduscxml-79b8a7941354416f83aae9cb53fbdf7e680beae2.zip
uscxml-79b8a7941354416f83aae9cb53fbdf7e680beae2.tar.gz
uscxml-79b8a7941354416f83aae9cb53fbdf7e680beae2.tar.bz2
Removed interpreter global features
Diffstat (limited to 'src/uscxml/plugins/invoker/http/HTTPServletInvoker.h')
-rw-r--r--src/uscxml/plugins/invoker/http/HTTPServletInvoker.h9
1 files changed, 0 insertions, 9 deletions
diff --git a/src/uscxml/plugins/invoker/http/HTTPServletInvoker.h b/src/uscxml/plugins/invoker/http/HTTPServletInvoker.h
index 024616d..ad89fee 100644
--- a/src/uscxml/plugins/invoker/http/HTTPServletInvoker.h
+++ b/src/uscxml/plugins/invoker/http/HTTPServletInvoker.h
@@ -13,7 +13,6 @@ namespace uscxml {
class HTTPServletInvoker : public InvokerImpl, public HTTPServlet {
public:
HTTPServletInvoker();
- HTTPServletInvoker(Interpreter* interpreter);
virtual ~HTTPServletInvoker();
virtual boost::shared_ptr<IOProcessorImpl> create(Interpreter* interpreter);
@@ -37,20 +36,12 @@ public:
}
bool canAdaptPath() { return false; }
- tthread::recursive_mutex& getMutex() {
- return _mutex;
- }
- std::map<std::string, HTTPServer::Request>& getRequests() {
- return _requests;
- }
-
protected:
tthread::recursive_mutex _mutex;
std::map<std::string, HTTPServer::Request> _requests;
std::string _path;
std::string _callback;
std::string _url;
- bool _isInterpreterGlobal;
};
#ifdef BUILD_AS_PLUGINS