summaryrefslogtreecommitdiffstats
path: root/src/shared/LV2Features.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/shared/LV2Features.cpp')
-rw-r--r--src/shared/LV2Features.cpp5
1 files changed, 0 insertions, 5 deletions
diff --git a/src/shared/LV2Features.cpp b/src/shared/LV2Features.cpp
index 4b8fa1c5..0842c702 100644
--- a/src/shared/LV2Features.cpp
+++ b/src/shared/LV2Features.cpp
@@ -25,12 +25,10 @@ using namespace std;
namespace Ingen {
namespace Shared {
-
LV2Features::LV2Features()
{
}
-
SharedPtr<LV2Features::Feature>
LV2Features::feature(const std::string& uri)
{
@@ -41,14 +39,12 @@ LV2Features::feature(const std::string& uri)
return SharedPtr<Feature>();
}
-
void
LV2Features::add_feature(const std::string& uri, SharedPtr<Feature> feature)
{
_features.insert(make_pair(uri, feature));
}
-
SharedPtr<LV2Features::FeatureArray>
LV2Features::lv2_features(Shared::World* world, Node* node) const
{
@@ -61,6 +57,5 @@ LV2Features::lv2_features(Shared::World* world, Node* node) const
return SharedPtr<FeatureArray>(new FeatureArray(vec));
}
-
} // namespace Shared
} // namespace Ingen