diff options
Diffstat (limited to 'src/server/Driver.hpp')
-rw-r--r-- | src/server/Driver.hpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/server/Driver.hpp b/src/server/Driver.hpp index da9f09a5..e551f636 100644 --- a/src/server/Driver.hpp +++ b/src/server/Driver.hpp @@ -56,10 +56,6 @@ public: */ virtual EnginePort* create_port(DuplexPort* patch_port) = 0; - /** Return the DriverPort for a particular path, iff one exists. */ - virtual EnginePort* engine_port(ProcessContext& context, - const Raul::Path& path) = 0; - /** Find a system port by path. */ virtual EnginePort* port(const Raul::Path& path) = 0; @@ -70,6 +66,10 @@ public: virtual Raul::Deletable* remove_port(ProcessContext& context, EnginePort* port) = 0; + /** Rename a system visible port. */ + virtual void rename_port(const Raul::Path& old_path, + const Raul::Path& new_path) = 0; + /** Return the audio buffer size in frames */ virtual SampleCount block_length() const = 0; |