summaryrefslogtreecommitdiffstats
path: root/src/uscxml/Interpreter.h
diff options
context:
space:
mode:
authorStefan Radomski <radomski@tk.informatik.tu-darmstadt.de>2013-03-27 16:05:27 (GMT)
committerStefan Radomski <radomski@tk.informatik.tu-darmstadt.de>2013-03-27 16:05:27 (GMT)
commitc0e29f9d4574be340d23c88605bf8868b166f718 (patch)
tree9118eb60caf48830ebbeef70e8b8cf1687735c32 /src/uscxml/Interpreter.h
parent83f0b4ecbd83e83b5404afd5cead7a08966495bf (diff)
downloaduscxml-c0e29f9d4574be340d23c88605bf8868b166f718.zip
uscxml-c0e29f9d4574be340d23c88605bf8868b166f718.tar.gz
uscxml-c0e29f9d4574be340d23c88605bf8868b166f718.tar.bz2
Polished PHP interface somewhat
Diffstat (limited to 'src/uscxml/Interpreter.h')
-rw-r--r--src/uscxml/Interpreter.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/uscxml/Interpreter.h b/src/uscxml/Interpreter.h
index d75241e..5d29eb6 100644
--- a/src/uscxml/Interpreter.h
+++ b/src/uscxml/Interpreter.h
@@ -132,7 +132,7 @@ public:
DataModel getDataModel() {
return _dataModel;
}
- void setParentQueue(uscxml::concurrency::BlockingQueue<Event>* parentQueue) {
+ void setParentQueue(uscxml::concurrency::BlockingQueue<SendRequest>* parentQueue) {
_parentQueue = parentQueue;
}
std::string getXPathPrefix() {
@@ -247,7 +247,7 @@ protected:
std::list<Event > _internalQueue;
uscxml::concurrency::BlockingQueue<Event> _externalQueue;
- uscxml::concurrency::BlockingQueue<Event>* _parentQueue;
+ uscxml::concurrency::BlockingQueue<SendRequest>* _parentQueue;
DelayedEventQueue* _sendQueue;
Event _currEvent;