summaryrefslogtreecommitdiffstats
path: root/ingen/StreamWriter.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/StreamWriter.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/StreamWriter.hpp')
-rw-r--r--ingen/StreamWriter.hpp5
1 files changed, 2 insertions, 3 deletions
diff --git a/ingen/StreamWriter.hpp b/ingen/StreamWriter.hpp
index 3fe38646..66a03216 100644
--- a/ingen/StreamWriter.hpp
+++ b/ingen/StreamWriter.hpp
@@ -23,10 +23,9 @@
#include "ingen/ColorContext.hpp"
#include "ingen/TurtleWriter.hpp"
-namespace Raul { class URI; }
-
namespace Ingen {
+class URI;
class URIMap;
class URIs;
@@ -37,7 +36,7 @@ class INGEN_API StreamWriter : public TurtleWriter
public:
StreamWriter(URIMap& map,
URIs& uris,
- const Raul::URI& uri,
+ const URI& uri,
FILE* stream,
ColorContext::Color color);