summaryrefslogtreecommitdiffstats
path: root/src/uscxml/interpreter
diff options
context:
space:
mode:
authorStefan Radomski <github@mintwerk.de>2016-08-03 12:17:08 (GMT)
committerStefan Radomski <github@mintwerk.de>2016-08-03 12:17:08 (GMT)
commite46dd37dc472b467ac8da137677bdcd3c4770b29 (patch)
tree9938f61939f394a6c57399b97a916b69c61ecaee /src/uscxml/interpreter
parent9317910791b8d212a765481c87ce1946a3d5f7c7 (diff)
downloaduscxml-e46dd37dc472b467ac8da137677bdcd3c4770b29.zip
uscxml-e46dd37dc472b467ac8da137677bdcd3c4770b29.tar.gz
uscxml-e46dd37dc472b467ac8da137677bdcd3c4770b29.tar.bz2
Allow custom EventQueue implementations via ActionLanguage
Diffstat (limited to 'src/uscxml/interpreter')
-rw-r--r--src/uscxml/interpreter/InterpreterImpl.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/uscxml/interpreter/InterpreterImpl.h b/src/uscxml/interpreter/InterpreterImpl.h
index fa7bf89..84aab20 100644
--- a/src/uscxml/interpreter/InterpreterImpl.h
+++ b/src/uscxml/interpreter/InterpreterImpl.h
@@ -230,6 +230,9 @@ public:
_execContent = al.execContent;
_microStepper = al.microStepper;
_dataModel = al.dataModel;
+ _internalQueue = al.internalQueue;
+ _externalQueue = al.externalQueue;
+ _delayQueue = al.delayedQueue;
}
static std::map<std::string, std::weak_ptr<InterpreterImpl> > getInstances();