diff options
Diffstat (limited to 'src/engine/LADSPAPlugin.cpp')
-rw-r--r-- | src/engine/LADSPAPlugin.cpp | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/src/engine/LADSPAPlugin.cpp b/src/engine/LADSPAPlugin.cpp index 2f1a7c1f..bc1f02fd 100644 --- a/src/engine/LADSPAPlugin.cpp +++ b/src/engine/LADSPAPlugin.cpp @@ -28,6 +28,16 @@ using namespace std; namespace Ingen { +const Raul::Atom& +LADSPAPlugin::get_property(const Raul::URI& uri) const +{ + if (uri.str() == "doap:name") + return _name; + else + return ResourceImpl::get_property(uri); +} + + NodeImpl* LADSPAPlugin::instantiate(const string& name, bool polyphonic, |