summaryrefslogtreecommitdiffstats
path: root/src/engine/QueuedEvent.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/engine/QueuedEvent.hpp')
-rw-r--r--src/engine/QueuedEvent.hpp5
1 files changed, 2 insertions, 3 deletions
diff --git a/src/engine/QueuedEvent.hpp b/src/engine/QueuedEvent.hpp
index 71c29624..64a82304 100644
--- a/src/engine/QueuedEvent.hpp
+++ b/src/engine/QueuedEvent.hpp
@@ -42,13 +42,12 @@ class QueuedEventSource;
class QueuedEvent : public Event
{
public:
- /** Process this event into a realtime-suitable event.
- */
+ /** Process this event into a realtime-suitable event. */
virtual void pre_process();
virtual void execute(ProcessContext& context);
- /** If this event blocks the prepare phase of other slow events */
+ /** True iff this event blocks the prepare phase of other events. */
bool is_blocking() { return _blocking; }
bool is_prepared() { return _pre_processed; }