summaryrefslogtreecommitdiffstats
path: root/src/engine/QueuedEvent.hpp
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2010-01-07 01:22:03 +0000
committerDavid Robillard <d@drobilla.net>2010-01-07 01:22:03 +0000
commita6045e5dc58f2dd2ab9e3d3d19fd3eaf6d84216f (patch)
tree9dfd8f9eca08096fed8d4500755cd2a89876c7a8 /src/engine/QueuedEvent.hpp
parent694736ac7e3478112a276533217ac5c8c7bf64b8 (diff)
downloadingen-a6045e5dc58f2dd2ab9e3d3d19fd3eaf6d84216f.tar.gz
ingen-a6045e5dc58f2dd2ab9e3d3d19fd3eaf6d84216f.tar.bz2
ingen-a6045e5dc58f2dd2ab9e3d3d19fd3eaf6d84216f.zip
Tidy.
git-svn-id: http://svn.drobilla.net/lad/trunk/ingen@2351 a436a847-0d15-0410-975c-d299462d15a1
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; }