From 42b469037c1b2bb55cd400a24cabfa29e7ae1ab2 Mon Sep 17 00:00:00 2001 From: David Robillard Date: Fri, 15 Apr 2011 20:20:58 +0000 Subject: Remove pointless module interface to ingen_module (World). Having a dlopen interface to this code makes no sense since it must be linked against to load modules in the first place. git-svn-id: http://svn.drobilla.net/lad/trunk/ingen@3146 a436a847-0d15-0410-975c-d299462d15a1 --- src/shared/LV2Features.hpp | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) (limited to 'src/shared') diff --git a/src/shared/LV2Features.hpp b/src/shared/LV2Features.hpp index 386e4ea8..f47a53b3 100644 --- a/src/shared/LV2Features.hpp +++ b/src/shared/LV2Features.hpp @@ -41,7 +41,8 @@ public: class Feature { public: virtual ~Feature() {} - virtual SharedPtr feature(Shared::World* world, Node* node) = 0; + virtual SharedPtr feature(Shared::World* world, + Node* node) = 0; }; class FeatureArray { @@ -72,7 +73,8 @@ public: void add_feature(const std::string& uri, SharedPtr feature); - SharedPtr lv2_features(Shared::World* world, Node* node) const; + SharedPtr lv2_features(Shared::World* world, + Node* node) const; private: typedef std::map< std::string, SharedPtr > Features; -- cgit v1.2.1