summaryrefslogtreecommitdiffstats
path: root/src/engine/Driver.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/engine/Driver.hpp')
-rw-r--r--src/engine/Driver.hpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/engine/Driver.hpp b/src/engine/Driver.hpp
index a2ca6b15..e03c316d 100644
--- a/src/engine/Driver.hpp
+++ b/src/engine/Driver.hpp
@@ -46,7 +46,8 @@ public:
/** Set the name of the system port */
virtual void set_name(const std::string& name) = 0;
- virtual void unregister() = 0;
+ virtual void create() = 0;
+ virtual void destroy() = 0;
bool is_input() const { return _patch_port->is_input(); }
DuplexPort* patch_port() const { return _patch_port; }