summaryrefslogtreecommitdiffstats
path: root/src/uscxml/plugins/invoker/location/LocationInvoker.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/uscxml/plugins/invoker/location/LocationInvoker.cpp')
-rw-r--r--src/uscxml/plugins/invoker/location/LocationInvoker.cpp44
1 files changed, 0 insertions, 44 deletions
diff --git a/src/uscxml/plugins/invoker/location/LocationInvoker.cpp b/src/uscxml/plugins/invoker/location/LocationInvoker.cpp
deleted file mode 100644
index 9aeb6b4..0000000
--- a/src/uscxml/plugins/invoker/location/LocationInvoker.cpp
+++ /dev/null
@@ -1,44 +0,0 @@
-#include "LocationInvoker.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 LocationInvokerProvider() );
- return true;
-}
-#endif
-
-LocationInvoker::LocationInvoker() {
-}
-
-LocationInvoker::~LocationInvoker() {
-};
-
-boost::shared_ptr<InvokerImpl> LocationInvoker::create(InterpreterImpl* interpreter) {
- boost::shared_ptr<LocationInvoker> invoker = boost::shared_ptr<LocationInvoker>(new LocationInvoker());
- invoker->_interpreter = interpreter;
- return invoker;
-}
-
-Data LocationInvoker::getDataModelVariables() {
- Data data;
- return data;
-}
-
-void LocationInvoker::send(const SendRequest& req) {
-}
-
-void LocationInvoker::cancel(const std::string sendId) {
-}
-
-void LocationInvoker::invoke(const InvokeRequest& req) {
-}
-
-} \ No newline at end of file