diff options
Diffstat (limited to 'src/server/DirectDriver.hpp')
-rw-r--r-- | src/server/DirectDriver.hpp | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/src/server/DirectDriver.hpp b/src/server/DirectDriver.hpp index b6d66df6..8acb3f11 100644 --- a/src/server/DirectDriver.hpp +++ b/src/server/DirectDriver.hpp @@ -47,11 +47,12 @@ public: return NULL; } + virtual EnginePort* port(const Raul::Path& path) { return NULL; } + virtual void add_port(ProcessContext& context, EnginePort* port) {} - virtual Raul::Deletable* remove_port(ProcessContext& context, - const Raul::Path& path, - EnginePort** port = NULL) { + virtual Raul::Deletable* remove_port(ProcessContext& context, + EnginePort* port) { return NULL; } |