summaryrefslogtreecommitdiffstats
path: root/ingen/Node.hpp
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2015-11-08 04:41:01 +0000
committerDavid Robillard <d@drobilla.net>2015-11-08 04:41:01 +0000
commit980b93d2539d9d35bc769db6605fa9628b46f37f (patch)
treecc258f37fe5b2ad9314515a142cada03664968aa /ingen/Node.hpp
parent36219bce05febf199e7ed6433d428c7821010620 (diff)
downloadingen-980b93d2539d9d35bc769db6605fa9628b46f37f.tar.gz
ingen-980b93d2539d9d35bc769db6605fa9628b46f37f.tar.bz2
ingen-980b93d2539d9d35bc769db6605fa9628b46f37f.zip
Add support for instance-access and data-access
git-svn-id: http://svn.drobilla.net/lad/trunk/ingen@5815 a436a847-0d15-0410-975c-d299462d15a1
Diffstat (limited to 'ingen/Node.hpp')
-rw-r--r--ingen/Node.hpp4
1 files changed, 4 insertions, 0 deletions
diff --git a/ingen/Node.hpp b/ingen/Node.hpp
index 4c7c453a..fd001897 100644
--- a/ingen/Node.hpp
+++ b/ingen/Node.hpp
@@ -20,6 +20,7 @@
#include "ingen/Resource.hpp"
#include "ingen/ingen.h"
#include "ingen/types.hpp"
+#include "lilv/lilv.h"
#include "raul/Path.hpp"
namespace Raul {
@@ -66,6 +67,9 @@ public:
virtual Node* port(uint32_t index) const { return NULL; }
virtual const Resource* plugin() const { return NULL; }
+ // Plugin blocks only
+ virtual LilvInstance* instance() { return NULL; }
+
// All objects
virtual GraphType graph_type() const = 0;
virtual const Raul::Path& path() const = 0;