diff options
Diffstat (limited to 'src/server/DirectDriver.hpp')
-rw-r--r-- | src/server/DirectDriver.hpp | 8 |
1 files changed, 3 insertions, 5 deletions
diff --git a/src/server/DirectDriver.hpp b/src/server/DirectDriver.hpp index 8acb3f11..ccf65fee 100644 --- a/src/server/DirectDriver.hpp +++ b/src/server/DirectDriver.hpp @@ -42,15 +42,13 @@ public: return NULL; } - virtual EnginePort* engine_port(ProcessContext& context, - const Raul::Path& path) { - return NULL; - } - virtual EnginePort* port(const Raul::Path& path) { return NULL; } virtual void add_port(ProcessContext& context, EnginePort* port) {} + virtual void rename_port(const Raul::Path& old_path, + const Raul::Path& new_path) {} + virtual Raul::Deletable* remove_port(ProcessContext& context, EnginePort* port) { return NULL; |