summaryrefslogtreecommitdiffstats
path: root/src/uscxml/plugins/invoker/graphics/openscenegraph/OSGInvoker.cpp
diff options
context:
space:
mode:
authorStefan Radomski <radomski@tk.informatik.tu-darmstadt.de>2013-01-12 23:49:43 (GMT)
committerStefan Radomski <radomski@tk.informatik.tu-darmstadt.de>2013-01-12 23:49:43 (GMT)
commita116aeb2cf5a84fa03f9814c3884561149029267 (patch)
treebdd7dfc15ec1e38edcc9a7532ffad03fe4f6f823 /src/uscxml/plugins/invoker/graphics/openscenegraph/OSGInvoker.cpp
parent6d0622c0bb8f0e52589c82252f2cc1eb847ad9bf (diff)
downloaduscxml-a116aeb2cf5a84fa03f9814c3884561149029267.zip
uscxml-a116aeb2cf5a84fa03f9814c3884561149029267.tar.gz
uscxml-a116aeb2cf5a84fa03f9814c3884561149029267.tar.bz2
Refactored to PIMPL pattern
Diffstat (limited to 'src/uscxml/plugins/invoker/graphics/openscenegraph/OSGInvoker.cpp')
-rw-r--r--src/uscxml/plugins/invoker/graphics/openscenegraph/OSGInvoker.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/uscxml/plugins/invoker/graphics/openscenegraph/OSGInvoker.cpp b/src/uscxml/plugins/invoker/graphics/openscenegraph/OSGInvoker.cpp
index 7a0e63a..94156c0 100644
--- a/src/uscxml/plugins/invoker/graphics/openscenegraph/OSGInvoker.cpp
+++ b/src/uscxml/plugins/invoker/graphics/openscenegraph/OSGInvoker.cpp
@@ -22,7 +22,7 @@ OSGInvoker::OSGInvoker() {
OSGInvoker::~OSGInvoker() {
};
-Invoker* OSGInvoker::create(Interpreter* interpreter) {
+InvokerImpl* OSGInvoker::create(Interpreter* interpreter) {
OSGInvoker* invoker = new OSGInvoker();
invoker->_interpreter = interpreter;
return invoker;
@@ -33,16 +33,16 @@ Data OSGInvoker::getDataModelVariables() {
return data;
}
-void OSGInvoker::send(SendRequest& req) {
+void OSGInvoker::send(const SendRequest& req) {
}
void OSGInvoker::cancel(const std::string sendId) {
}
-void OSGInvoker::sendToParent(SendRequest& req) {
+void OSGInvoker::sendToParent(const SendRequest& req) {
}
-void OSGInvoker::invoke(InvokeRequest& req) {
+void OSGInvoker::invoke(const InvokeRequest& req) {
tthread::lock_guard<tthread::recursive_mutex> lock(_mutex);
// register default event handlers