summaryrefslogtreecommitdiffstats
path: root/src/server/LV2Plugin.hpp
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2018-09-23 19:06:25 +0200
committerDavid Robillard <d@drobilla.net>2018-09-23 19:06:25 +0200
commit04b4d70f38402b1e4e4751157f42eb558bd60f9c (patch)
tree7046ce56d1fb498f5e8720c5fb59ae9895fecb39 /src/server/LV2Plugin.hpp
parent394b01da8e26dbe1b6a0520944d954ca0b16b1b5 (diff)
downloadingen-04b4d70f38402b1e4e4751157f42eb558bd60f9c.tar.gz
ingen-04b4d70f38402b1e4e4751157f42eb558bd60f9c.tar.bz2
ingen-04b4d70f38402b1e4e4751157f42eb558bd60f9c.zip
Use override specifiers
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));
}