summaryrefslogtreecommitdiffstats
path: root/src/server/LV2Plugin.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/server/LV2Plugin.hpp')
-rw-r--r--src/server/LV2Plugin.hpp10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/server/LV2Plugin.hpp b/src/server/LV2Plugin.hpp
index 9608b4e5..9d342f54 100644
--- a/src/server/LV2Plugin.hpp
+++ b/src/server/LV2Plugin.hpp
@@ -45,18 +45,18 @@ public:
bool polyphonic,
GraphImpl* parent,
Engine& engine,
- const LilvState* state);
+ const LilvState* state) override;
- const Raul::Symbol symbol() const;
+ const Raul::Symbol symbol() const override;
World* world() const { return _world; }
const LilvPlugin* lilv_plugin() const { return _lilv_plugin; }
- void update_properties();
+ void update_properties() override;
- void load_presets();
+ void load_presets() override;
- URI bundle_uri() const {
+ URI bundle_uri() const override {
const LilvNode* bundle = lilv_plugin_get_bundle_uri(_lilv_plugin);
return URI(lilv_node_as_uri(bundle));
}