summaryrefslogtreecommitdiffstats
path: root/include/ingen/shared/URIs.hpp
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2012-03-14 23:53:47 +0000
committerDavid Robillard <d@drobilla.net>2012-03-14 23:53:47 +0000
commit8fc92b0e098133cd8b09acbae99c52b458a2868e (patch)
treeacf49f7334824a8fc2733a9ca8be2ef7a6100a58 /include/ingen/shared/URIs.hpp
parent618fbe7ad843aed738942b6e5bd87000bb11b53c (diff)
downloadingen-8fc92b0e098133cd8b09acbae99c52b458a2868e.tar.gz
ingen-8fc92b0e098133cd8b09acbae99c52b458a2868e.tar.bz2
ingen-8fc92b0e098133cd8b09acbae99c52b458a2868e.zip
Consistently map all URIs with the URI map.
git-svn-id: http://svn.drobilla.net/lad/trunk/ingen@4060 a436a847-0d15-0410-975c-d299462d15a1
Diffstat (limited to 'include/ingen/shared/URIs.hpp')
-rw-r--r--include/ingen/shared/URIs.hpp5
1 files changed, 3 insertions, 2 deletions
diff --git a/include/ingen/shared/URIs.hpp b/include/ingen/shared/URIs.hpp
index 27f875fc..b3d8d301 100644
--- a/include/ingen/shared/URIs.hpp
+++ b/include/ingen/shared/URIs.hpp
@@ -20,6 +20,7 @@
#include <boost/utility.hpp>
+#include "ingen/shared/LV2URIMap.hpp"
#include "raul/URI.hpp"
namespace Raul {
@@ -31,10 +32,10 @@ namespace Shared {
class URIs : public boost::noncopyable {
public:
- URIs(Raul::Forge& forge);
+ URIs(Raul::Forge& forge, LV2URIMap* map);
struct Quark : public Raul::URI {
- Quark(const char* str);
+ Quark(LV2URIMap* map, const char* str);
uint32_t id;
};