summaryrefslogtreecommitdiffstats
path: root/src/uscxml/plugins/Invoker.h
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/plugins/Invoker.h
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/plugins/Invoker.h')
-rw-r--r--src/uscxml/plugins/Invoker.h76
1 files changed, 76 insertions, 0 deletions
diff --git a/src/uscxml/plugins/Invoker.h b/src/uscxml/plugins/Invoker.h
new file mode 100644
index 0000000..c967331
--- /dev/null
+++ b/src/uscxml/plugins/Invoker.h
@@ -0,0 +1,76 @@
+/**
+ * @file
+ * @author 2012-2014 Stefan Radomski (stefan.radomski@cs.tu-darmstadt.de)
+ * @copyright Simplified BSD
+ *
+ * @cond
+ * This program is free software: you can redistribute it and/or modify
+ * it under the terms of the FreeBSD license as published by the FreeBSD
+ * project.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
+ *
+ * You should have received a copy of the FreeBSD license along with this
+ * program. If not, see <http://www.opensource.org/licenses/bsd-license>.
+ * @endcond
+ */
+
+#ifndef INVOKER_H_CAC11892
+#define INVOKER_H_CAC11892
+
+
+#include "uscxml/Common.h"
+#include "uscxml/plugins/EventHandler.h"
+#include "uscxml/messages/InvokeRequest.h"
+
+namespace uscxml {
+
+class InterpreterImpl;
+
+class USCXML_API InvokerImpl : public EventHandlerImpl {
+public:
+ virtual ~InvokerImpl() {}
+ virtual void invoke(const InvokeRequest& req) = 0;
+ virtual boost::shared_ptr<InvokerImpl> create(InterpreterImpl* interpreter) = 0;
+};
+
+class USCXML_API Invoker : public EventHandler {
+public:
+ Invoker() : _impl() {}
+ Invoker(boost::shared_ptr<InvokerImpl> const impl) : EventHandler(impl), _impl(impl) { }
+ Invoker(const Invoker& other) : EventHandler(other._impl), _impl(other._impl) { }
+ virtual ~Invoker() {};
+
+ operator bool() const {
+ return _impl;
+ }
+ bool operator< (const Invoker& other) const {
+ return _impl < other._impl;
+ }
+ bool operator==(const Invoker& other) const {
+ return _impl == other._impl;
+ }
+ bool operator!=(const Invoker& other) const {
+ return _impl != other._impl;
+ }
+ Invoker& operator= (const Invoker& other) {
+ _impl = other._impl;
+ EventHandler::_impl = _impl;
+ return *this;
+ }
+
+ virtual void invoke(InvokeRequest& req) {
+ _impl->invoke(req);
+ }
+
+protected:
+ boost::shared_ptr<InvokerImpl> _impl;
+};
+
+
+}
+
+
+#endif /* end of include guard: INVOKER_H_CAC11892 */