summaryrefslogtreecommitdiffstats
path: root/src/uscxml/Interpreter.h
diff options
context:
space:
mode:
authorStefan Radomski <radomski@tk.informatik.tu-darmstadt.de>2013-04-05 07:41:52 (GMT)
committerStefan Radomski <radomski@tk.informatik.tu-darmstadt.de>2013-04-05 07:41:52 (GMT)
commitb7566ef964dca8612257629e182eaf4e467745ba (patch)
tree8029c6a377da02f71ed7008ffb22dc4acdc403d9 /src/uscxml/Interpreter.h
parent08936a488af8bb38a287f64b2346e1a9d8287f55 (diff)
downloaduscxml-b7566ef964dca8612257629e182eaf4e467745ba.zip
uscxml-b7566ef964dca8612257629e182eaf4e467745ba.tar.gz
uscxml-b7566ef964dca8612257629e182eaf4e467745ba.tar.bz2
More W3C tests passing
Diffstat (limited to 'src/uscxml/Interpreter.h')
-rw-r--r--src/uscxml/Interpreter.h5
1 files changed, 2 insertions, 3 deletions
diff --git a/src/uscxml/Interpreter.h b/src/uscxml/Interpreter.h
index 0352f2b..c2e24fa 100644
--- a/src/uscxml/Interpreter.h
+++ b/src/uscxml/Interpreter.h
@@ -156,6 +156,7 @@ public:
return "";
}
+ void inline receiveInternal(const Event& event);
void receive(const Event& event, bool toFront = false) {
if (toFront) {
_externalQueue.push_front(event);
@@ -163,9 +164,6 @@ public:
_externalQueue.push(event);
}
}
- void receiveInternal(const Event& event) {
- _internalQueue.push_back(event);
- }
Event getCurrentEvent() {
return _currEvent;
@@ -243,6 +241,7 @@ protected:
void init();
void normalize(Arabica::DOM::Element<std::string>& scxml);
+ void initializeData(const Arabica::DOM::Node<std::string>& data);
void setupIOProcessors();
bool _stable;