summaryrefslogtreecommitdiffstats
path: root/ingen/Forge.hpp
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2018-01-21 00:41:34 +0100
committerDavid Robillard <d@drobilla.net>2018-01-21 00:56:50 +0100
commit44f7ad5222d824d81dc743045d5887418847e74e (patch)
tree1b41535ac00b8b225a25dba2873b064cb074bfa9 /ingen/Forge.hpp
parent90fca083052880479ad90d870e556f0648e32106 (diff)
downloadingen-44f7ad5222d824d81dc743045d5887418847e74e.tar.gz
ingen-44f7ad5222d824d81dc743045d5887418847e74e.tar.bz2
ingen-44f7ad5222d824d81dc743045d5887418847e74e.zip
Add URI class and remove use of Raul::URI
Diffstat (limited to 'ingen/Forge.hpp')
-rw-r--r--ingen/Forge.hpp5
1 files changed, 2 insertions, 3 deletions
diff --git a/ingen/Forge.hpp b/ingen/Forge.hpp
index 3dd7bfa3..32822f89 100644
--- a/ingen/Forge.hpp
+++ b/ingen/Forge.hpp
@@ -25,11 +25,10 @@
#include "ingen/ingen.h"
#include "lv2/lv2plug.in/ns/ext/atom/forge.h"
-namespace Raul { class URI; }
-
namespace Ingen {
class URIMap;
+class URI;
/** Forge for Atoms.
* @ingroup IngenShared
@@ -54,7 +53,7 @@ public:
Atom make_urid(int32_t v) { return Atom(sizeof(int32_t), URID, &v); }
- Atom make_urid(const Raul::URI& u);
+ Atom make_urid(const Ingen::URI& u);
Atom alloc(uint32_t size, uint32_t type, const void* val) {
return Atom(size, type, val);