diff options
Diffstat (limited to 'src/server/LV2Plugin.hpp')
-rw-r--r-- | src/server/LV2Plugin.hpp | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/src/server/LV2Plugin.hpp b/src/server/LV2Plugin.hpp index 71f292b7..9cf69daa 100644 --- a/src/server/LV2Plugin.hpp +++ b/src/server/LV2Plugin.hpp @@ -42,13 +42,13 @@ class LV2Plugin : public PluginImpl public: LV2Plugin(SharedPtr<LV2Info> lv2_info, const std::string& uri); - NodeImpl* instantiate(BufferFactory& bufs, - const std::string& name, - bool polyphonic, - PatchImpl* parent, - Engine& engine); + NodeImpl* instantiate(BufferFactory& bufs, + const Raul::Symbol& symbol, + bool polyphonic, + PatchImpl* parent, + Engine& engine); - const std::string symbol() const; + const Raul::Symbol symbol() const; SharedPtr<LV2Info> lv2_info() const { return _lv2_info; } |