summaryrefslogtreecommitdiffstats
path: root/src/LV2Features.cpp
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2012-12-21 22:41:43 +0000
committerDavid Robillard <d@drobilla.net>2012-12-21 22:41:43 +0000
commit26d7e8e9399ef49a37463188cd2f841537c9bb4d (patch)
treef45d1c27964d172ca547abb7a9b933407b2ee7be /src/LV2Features.cpp
parent3a1eb6f291e555a25d2be69a540d0f8d4317c4f2 (diff)
downloadingen-26d7e8e9399ef49a37463188cd2f841537c9bb4d.tar.gz
ingen-26d7e8e9399ef49a37463188cd2f841537c9bb4d.tar.bz2
ingen-26d7e8e9399ef49a37463188cd2f841537c9bb4d.zip
Gracefully ignore plugins which require unsupported features or have unknown port types.
git-svn-id: http://svn.drobilla.net/lad/trunk/ingen@4882 a436a847-0d15-0410-975c-d299462d15a1
Diffstat (limited to 'src/LV2Features.cpp')
-rw-r--r--src/LV2Features.cpp6
1 files changed, 6 insertions, 0 deletions
diff --git a/src/LV2Features.cpp b/src/LV2Features.cpp
index 122f794e..612cd9f7 100644
--- a/src/LV2Features.cpp
+++ b/src/LV2Features.cpp
@@ -47,6 +47,12 @@ LV2Features::FeatureArray::~FeatureArray()
free(_array);
}
+bool
+LV2Features::is_supported(const std::string& uri) const
+{
+ return false;
+}
+
SharedPtr<LV2Features::FeatureArray>
LV2Features::lv2_features(World* world, Node* node) const
{