summaryrefslogtreecommitdiffstats
path: root/src/uscxml/interpreter/EventQueue.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/uscxml/interpreter/EventQueue.cpp')
-rw-r--r--src/uscxml/interpreter/EventQueue.cpp3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/uscxml/interpreter/EventQueue.cpp b/src/uscxml/interpreter/EventQueue.cpp
index c460e02..7ff0bfb 100644
--- a/src/uscxml/interpreter/EventQueue.cpp
+++ b/src/uscxml/interpreter/EventQueue.cpp
@@ -38,6 +38,9 @@ Event EventQueue::dequeue(size_t blockMs) {
void EventQueue::enqueue(const Event& event) {
return _impl->enqueue(event);
}
+void EventQueue::reset() {
+ return _impl->reset();
+}
PIMPL_OPERATORS_INHERIT_IMPL(DelayedEventQueue, EventQueue)