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.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/uscxml/interpreter/EventQueue.cpp b/src/uscxml/interpreter/EventQueue.cpp
index ab199b4..9b345d5 100644
--- a/src/uscxml/interpreter/EventQueue.cpp
+++ b/src/uscxml/interpreter/EventQueue.cpp
@@ -43,11 +43,11 @@ void EventQueue::reset() {
}
std::shared_ptr<EventQueueImpl> EventQueue::getImplBase() {
- return _impl;
+ return _impl;
}
-
-
+
+
PIMPL_OPERATORS_INHERIT_IMPL(DelayedEventQueue, EventQueue)
void DelayedEventQueue::enqueueDelayed(const Event& event, size_t delayMs, const std::string& eventUUID) {
@@ -62,7 +62,7 @@ void DelayedEventQueue::cancelAllDelayed() {
}
std::shared_ptr<DelayedEventQueueImpl> DelayedEventQueue::getImplDelayed() {
- return _impl;
+ return _impl;
}
}