diff options
Diffstat (limited to 'src/server/ingen_lv2.cpp')
-rw-r--r-- | src/server/ingen_lv2.cpp | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/src/server/ingen_lv2.cpp b/src/server/ingen_lv2.cpp index 9d64c07b..e73cc4ee 100644 --- a/src/server/ingen_lv2.cpp +++ b/src/server/ingen_lv2.cpp @@ -250,6 +250,11 @@ public: virtual void rename_port(const Raul::Path& old_path, const Raul::Path& new_path) {} + /** Unused since LV2 has no dynamic ports. */ + virtual void port_property(const Raul::Path& path, + const Raul::URI& uri, + const Atom& value) {} + virtual EnginePort* create_port(DuplexPort* graph_port) { return new EnginePort(graph_port); } |