diff options
Diffstat (limited to 'src/engine/LV2Node.hpp')
-rw-r--r-- | src/engine/LV2Node.hpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/engine/LV2Node.hpp b/src/engine/LV2Node.hpp index 64b74315..7f1714f1 100644 --- a/src/engine/LV2Node.hpp +++ b/src/engine/LV2Node.hpp @@ -20,6 +20,7 @@ #include <string> #include "slv2/slv2.h" +#include "raul/IntrusivePtr.hpp" #include "contexts.lv2/contexts.h" #include "types.hpp" #include "NodeBase.hpp" @@ -58,7 +59,7 @@ public: void process(ProcessContext& context); - void set_port_buffer(uint32_t voice, uint32_t port_num, SharedPtr<Buffer> buf); + void set_port_buffer(uint32_t voice, uint32_t port_num, IntrusivePtr<Buffer> buf); protected: LV2Plugin* _lv2_plugin; |