summaryrefslogtreecommitdiffstats
path: root/src/uscxml/interpreter/ContentExecutor.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/uscxml/interpreter/ContentExecutor.cpp')
-rw-r--r--src/uscxml/interpreter/ContentExecutor.cpp46
1 files changed, 46 insertions, 0 deletions
diff --git a/src/uscxml/interpreter/ContentExecutor.cpp b/src/uscxml/interpreter/ContentExecutor.cpp
new file mode 100644
index 0000000..e26d66a
--- /dev/null
+++ b/src/uscxml/interpreter/ContentExecutor.cpp
@@ -0,0 +1,46 @@
+/**
+ * @file
+ * @author 2016 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
+ */
+
+
+#include "ContentExecutor.h"
+#include "ContentExecutorImpl.h"
+
+namespace uscxml {
+
+void ContentExecutor::process(XERCESC_NS::DOMElement* block, const X& xmlPrefix) {
+ _impl->process(block, xmlPrefix);
+}
+
+void ContentExecutor::invoke(XERCESC_NS::DOMElement* invoke) {
+ _impl->invoke(invoke);
+}
+
+void ContentExecutor::uninvoke(XERCESC_NS::DOMElement* invoke) {
+ _impl->uninvoke(invoke);
+}
+
+Data ContentExecutor::elementAsData(XERCESC_NS::DOMElement* element) {
+ return _impl->elementAsData(element);
+}
+
+void ContentExecutor::raiseDoneEvent(XERCESC_NS::DOMElement* state, XERCESC_NS::DOMElement* doneData) {
+ return _impl->raiseDoneEvent(state, doneData);
+}
+
+}