summaryrefslogtreecommitdiffstats
path: root/src/shared/LV2URIMap.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/shared/LV2URIMap.hpp')
-rw-r--r--src/shared/LV2URIMap.hpp8
1 files changed, 3 insertions, 5 deletions
diff --git a/src/shared/LV2URIMap.hpp b/src/shared/LV2URIMap.hpp
index 20957a6a..21782b42 100644
--- a/src/shared/LV2URIMap.hpp
+++ b/src/shared/LV2URIMap.hpp
@@ -34,7 +34,6 @@
namespace Ingen {
namespace Shared {
-
/** Implementation of the LV2 URI Map and URI Unmap extensions
*/
class LV2URIMap : public boost::noncopyable, public LV2Features::Feature {
@@ -47,7 +46,7 @@ public:
struct UnmapFeature : public LV2Features::Feature {
UnmapFeature(const LV2URIMap& map) : _feature(map.uri_unmap_feature) {}
-
+
SharedPtr<LV2_Feature> feature(Shared::World*, Node*) {
return SharedPtr<LV2_Feature>(&_feature, NullDeleter<LV2_Feature>);
}
@@ -56,7 +55,7 @@ public:
};
SharedPtr<UnmapFeature> unmap_feature() { return _unmap_feature; }
-
+
virtual uint32_t uri_to_id(const char* map, const char* uri);
virtual const char* id_to_uri(const char* map, uint32_t id);
@@ -85,7 +84,7 @@ private:
EventToGlobal _event_to_global;
GlobalToEvent _global_to_event;
-
+
public:
struct Quark : public Raul::URI {
Quark(const char* str);
@@ -151,7 +150,6 @@ public:
const Quark wildcard;
};
-
} // namespace Shared
} // namespace Ingen