summaryrefslogtreecommitdiffstats
path: root/src/uscxml/plugins/invoker/graphics/openscenegraph/OSGInvoker.cpp
diff options
context:
space:
mode:
authorStefan Radomski <radomski@tk.informatik.tu-darmstadt.de>2012-12-21 18:05:07 (GMT)
committerStefan Radomski <radomski@tk.informatik.tu-darmstadt.de>2012-12-21 18:05:07 (GMT)
commitedf85a10991e1eb041a24fa81ed330c3dbf4d151 (patch)
treecc58c32c353d35163355e4a921b0ff08784707aa /src/uscxml/plugins/invoker/graphics/openscenegraph/OSGInvoker.cpp
parent498f6f80e9ca01236ca1491596875ab7eb4cd8c3 (diff)
downloaduscxml-edf85a10991e1eb041a24fa81ed330c3dbf4d151.zip
uscxml-edf85a10991e1eb041a24fa81ed330c3dbf4d151.tar.gz
uscxml-edf85a10991e1eb041a24fa81ed330c3dbf4d151.tar.bz2
Started SceneGraph invoker
Diffstat (limited to 'src/uscxml/plugins/invoker/graphics/openscenegraph/OSGInvoker.cpp')
-rw-r--r--src/uscxml/plugins/invoker/graphics/openscenegraph/OSGInvoker.cpp47
1 files changed, 47 insertions, 0 deletions
diff --git a/src/uscxml/plugins/invoker/graphics/openscenegraph/OSGInvoker.cpp b/src/uscxml/plugins/invoker/graphics/openscenegraph/OSGInvoker.cpp
new file mode 100644
index 0000000..33aba1d
--- /dev/null
+++ b/src/uscxml/plugins/invoker/graphics/openscenegraph/OSGInvoker.cpp
@@ -0,0 +1,47 @@
+#include "OSGInvoker.h"
+#include <glog/logging.h>
+
+#ifdef BUILD_AS_PLUGINS
+#include <Pluma/Connector.hpp>
+#endif
+
+namespace uscxml {
+
+#ifdef BUILD_AS_PLUGINS
+PLUMA_CONNECTOR
+bool connect(pluma::Host& host) {
+ host.add( new OSGInvokerProvider() );
+ return true;
+}
+#endif
+
+OSGInvoker::OSGInvoker() {
+}
+
+OSGInvoker::~OSGInvoker() {
+};
+
+Invoker* OSGInvoker::create(Interpreter* interpreter) {
+ OSGInvoker* invoker = new OSGInvoker();
+ invoker->_interpreter = interpreter;
+ return invoker;
+}
+
+Data OSGInvoker::getDataModelVariables() {
+ Data data;
+ return data;
+}
+
+void OSGInvoker::send(SendRequest& req) {
+}
+
+void OSGInvoker::cancel(const std::string sendId) {
+}
+
+void OSGInvoker::sendToParent(SendRequest& req) {
+}
+
+void OSGInvoker::invoke(InvokeRequest& req) {
+}
+
+} \ No newline at end of file