summaryrefslogtreecommitdiffstats
path: root/src/uscxml/interpreter/EventQueue.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/uscxml/interpreter/EventQueue.h')
-rw-r--r--src/uscxml/interpreter/EventQueue.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/uscxml/interpreter/EventQueue.h b/src/uscxml/interpreter/EventQueue.h
index 7356b23..5ca1f52 100644
--- a/src/uscxml/interpreter/EventQueue.h
+++ b/src/uscxml/interpreter/EventQueue.h
@@ -39,7 +39,7 @@ public:
virtual Event dequeue(size_t blockMs);
virtual void enqueue(const Event& event);
virtual void reset();
- virtual std::shared_ptr<EventQueueImpl> getImplBase();
+ virtual std::shared_ptr<EventQueueImpl> getImplBase();
protected:
std::shared_ptr<EventQueueImpl> _impl;
@@ -57,8 +57,8 @@ public:
void enqueueDelayed(const Event& event, size_t delayMs, const std::string& eventUUID);
void cancelDelayed(const std::string& eventUUID);
void cancelAllDelayed();
- virtual std::shared_ptr<DelayedEventQueueImpl> getImplDelayed();
-
+ virtual std::shared_ptr<DelayedEventQueueImpl> getImplDelayed();
+
protected:
std::shared_ptr<DelayedEventQueueImpl> _impl;
};