summaryrefslogtreecommitdiffstats
path: root/src/uscxml/Factory.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/uscxml/Factory.h')
-rw-r--r--src/uscxml/Factory.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/uscxml/Factory.h b/src/uscxml/Factory.h
index 6385ba7..172ec99 100644
--- a/src/uscxml/Factory.h
+++ b/src/uscxml/Factory.h
@@ -44,8 +44,12 @@ public:
virtual void setInterpreter(Interpreter* interpreter) {
_interpreter = interpreter;
}
+
virtual Data getDataModelVariables() = 0;
virtual void send(SendRequest& req) = 0;
+
+ virtual void runOnMainThread() {};
+
protected:
Interpreter* _interpreter;
};