diff options
author | David Robillard <d@drobilla.net> | 2011-10-22 03:53:44 +0000 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2011-10-22 03:53:44 +0000 |
commit | d3c91af24a76bf999f18eab5cb5136857c93125a (patch) | |
tree | a38a0d205d1477390fc6c3fcdf2bdfab8daf08ba /include/ingen | |
parent | 0cfeb9f3a3a6098e1e2ea6edf07633af7a7d7eaa (diff) | |
download | ingen-d3c91af24a76bf999f18eab5cb5136857c93125a.tar.gz ingen-d3c91af24a76bf999f18eab5cb5136857c93125a.tar.bz2 ingen-d3c91af24a76bf999f18eab5cb5136857c93125a.zip |
Move basic URI map and unmap implementation to URIs.
git-svn-id: http://svn.drobilla.net/lad/trunk/ingen@3588 a436a847-0d15-0410-975c-d299462d15a1
Diffstat (limited to 'include/ingen')
-rw-r--r-- | include/ingen/shared/URIs.hpp | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/include/ingen/shared/URIs.hpp b/include/ingen/shared/URIs.hpp index 7083507e..ba68f9eb 100644 --- a/include/ingen/shared/URIs.hpp +++ b/include/ingen/shared/URIs.hpp @@ -29,6 +29,9 @@ class URIs : public boost::noncopyable { public: URIs(); + uint32_t map_uri(const char* uri); + const char* unmap_uri(uint32_t urid); + struct Quark : public Raul::URI { Quark(const char* str); const char* c_str() const; |