diff options
-rw-r--r-- | ingen/shared/LV2Features.hpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/ingen/shared/LV2Features.hpp b/ingen/shared/LV2Features.hpp index c2a6021d..76d64b42 100644 --- a/ingen/shared/LV2Features.hpp +++ b/ingen/shared/LV2Features.hpp @@ -22,6 +22,7 @@ #include "lv2/lv2plug.in/ns/lv2core/lv2.h" #include "raul/SharedPtr.hpp" +#include "raul/Noncopyable.hpp" namespace Ingen { @@ -46,7 +47,7 @@ public: Node* node) = 0; }; - class FeatureArray { + class FeatureArray : public Raul::Noncopyable { public: typedef std::vector< SharedPtr<LV2_Feature> > FeatureVector; |