summaryrefslogtreecommitdiffstats
path: root/src/server/Event.hpp
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2016-09-11 15:21:25 +0200
committerDavid Robillard <d@drobilla.net>2016-09-11 15:21:25 +0200
commitf3546d49dbd2d673138387a87bc523c26dcece68 (patch)
treeede285a773fc565205f82a2b0a62ebba6ea552e0 /src/server/Event.hpp
parentfb2744d4265d26fb98b19689b50d127f32c66eab (diff)
downloadingen-f3546d49dbd2d673138387a87bc523c26dcece68.tar.gz
ingen-f3546d49dbd2d673138387a87bc523c26dcece68.tar.bz2
ingen-f3546d49dbd2d673138387a87bc523c26dcece68.zip
Remove last vestiges of multiple run contexts
Diffstat (limited to 'src/server/Event.hpp')
-rw-r--r--src/server/Event.hpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/server/Event.hpp b/src/server/Event.hpp
index 15ce386b..3cec155e 100644
--- a/src/server/Event.hpp
+++ b/src/server/Event.hpp
@@ -34,7 +34,7 @@ namespace Ingen {
namespace Server {
class Engine;
-class ProcessContext;
+class RunContext;
/** An event (command) to perform some action on Ingen.
*
@@ -60,7 +60,7 @@ public:
virtual bool pre_process() = 0;
/** Execute this event in the audio thread (realtime). */
- virtual void execute(ProcessContext& context) = 0;
+ virtual void execute(RunContext& context) = 0;
/** Post-process event after execution (non-realtime). */
virtual void post_process() = 0;