summaryrefslogtreecommitdiffstats
path: root/src/server/Driver.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/Driver.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/Driver.hpp')
-rw-r--r--src/server/Driver.hpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/server/Driver.hpp b/src/server/Driver.hpp
index 4255f652..9f261494 100644
--- a/src/server/Driver.hpp
+++ b/src/server/Driver.hpp
@@ -56,7 +56,7 @@ public:
virtual EnginePort* get_port(const Raul::Path& path) = 0;
/** Add a system visible port (e.g. a port on the root graph). */
- virtual void add_port(ProcessContext& context, EnginePort* port) = 0;
+ virtual void add_port(RunContext& context, EnginePort* port) = 0;
/** Remove a system visible port.
*
@@ -64,7 +64,7 @@ public:
* destroy the port. To actually remove the system port, unregister_port()
* must be called later in another thread.
*/
- virtual void remove_port(ProcessContext& context, EnginePort* port) = 0;
+ virtual void remove_port(RunContext& context, EnginePort* port) = 0;
/** Register a system visible port. */
virtual void register_port(EnginePort& port) = 0;
@@ -94,7 +94,7 @@ public:
virtual SampleCount frame_time() const = 0;
/** Append time events for this cycle to `buffer`. */
- virtual void append_time_events(ProcessContext& context,
+ virtual void append_time_events(RunContext& context,
Buffer& buffer) = 0;
};