diff options
Diffstat (limited to 'src/server/LV2Plugin.hpp')
-rw-r--r-- | src/server/LV2Plugin.hpp | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/src/server/LV2Plugin.hpp b/src/server/LV2Plugin.hpp index 0eee6731..aa10d90a 100644 --- a/src/server/LV2Plugin.hpp +++ b/src/server/LV2Plugin.hpp @@ -52,8 +52,15 @@ public: World* world() const { return _world; } const LilvPlugin* lilv_plugin() const { return _lilv_plugin; } + void update_properties(); + void load_presets(); + Raul::URI bundle_uri() const { + const LilvNode* bundle = lilv_plugin_get_bundle_uri(_lilv_plugin); + return Raul::URI(lilv_node_as_uri(bundle)); + } + private: World* _world; const LilvPlugin* _lilv_plugin; |