summaryrefslogtreecommitdiffstats
path: root/ingen/ClashAvoider.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/ClashAvoider.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/ClashAvoider.hpp')
-rw-r--r--ingen/ClashAvoider.hpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/ingen/ClashAvoider.hpp b/ingen/ClashAvoider.hpp
index a5cd3643..069c8fef 100644
--- a/ingen/ClashAvoider.hpp
+++ b/ingen/ClashAvoider.hpp
@@ -21,11 +21,11 @@
#include "ingen/ingen.h"
#include "raul/Path.hpp"
-#include "raul/URI.hpp"
namespace Ingen {
class Store;
+class URI;
/** Maps paths so they do not clash with an existing object in a store.
*
@@ -36,7 +36,7 @@ class INGEN_API ClashAvoider
public:
explicit ClashAvoider(const Store& store);
- const Raul::URI map_uri(const Raul::URI& in);
+ const URI map_uri(const URI& in);
const Raul::Path map_path(const Raul::Path& in);
bool exists(const Raul::Path& path) const;