summaryrefslogtreecommitdiffstats
path: root/ingen/Plugin.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'ingen/Plugin.hpp')
-rw-r--r--ingen/Plugin.hpp6
1 files changed, 5 insertions, 1 deletions
diff --git a/ingen/Plugin.hpp b/ingen/Plugin.hpp
index 41de5a2a..30c70963 100644
--- a/ingen/Plugin.hpp
+++ b/ingen/Plugin.hpp
@@ -28,9 +28,13 @@ namespace Ingen {
/** A plugin which instantiates to a Node.
* @ingroup Ingen
*/
-class Plugin : virtual public Resource
+class Plugin : public Resource
{
public:
+ Plugin(Shared::URIs& uris, const Raul::URI& uri)
+ : Resource(uris, uri)
+ {}
+
enum Type { NIL, LV2, Internal, Patch };
virtual Type type() const = 0;