summaryrefslogtreecommitdiffstats
path: root/src/uscxml/plugins/invoker/modality/MMIComponent.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/uscxml/plugins/invoker/modality/MMIComponent.cpp')
-rw-r--r--src/uscxml/plugins/invoker/modality/MMIComponent.cpp42
1 files changed, 0 insertions, 42 deletions
diff --git a/src/uscxml/plugins/invoker/modality/MMIComponent.cpp b/src/uscxml/plugins/invoker/modality/MMIComponent.cpp
deleted file mode 100644
index 170f4bc..0000000
--- a/src/uscxml/plugins/invoker/modality/MMIComponent.cpp
+++ /dev/null
@@ -1,42 +0,0 @@
-#include "MMIComponent.h"
-#include "uscxml/Interpreter.h"
-
-namespace uscxml {
-
-MMIComponent::MMIComponent() {
-}
-
-
-MMIComponent::~MMIComponent() {
-};
-
-Invoker* MMIComponent::create(Interpreter* interpreter) {
- MMIComponent* invoker = new MMIComponent();
- invoker->_interpreter = interpreter;
- return invoker;
-}
-
-Data MMIComponent::getDataModelVariables() {
- Data data;
- return data;
-}
-
-void MMIComponent::send(SendRequest& req) {
-
-}
-
-void MMIComponent::cancel(const std::string sendId) {
- assert(false);
-}
-
-void MMIComponent::sendToParent(SendRequest& req) {
- req.invokeid = _invokeId;
- assert(false);
-}
-
-void MMIComponent::invoke(InvokeRequest& req) {
- _invokeId = req.invokeid;
-
-}
-
-} \ No newline at end of file