summaryrefslogtreecommitdiffstats
path: root/src/server/LV2Plugin.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 /src/server/LV2Plugin.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 'src/server/LV2Plugin.hpp')
-rw-r--r--src/server/LV2Plugin.hpp5
1 files changed, 2 insertions, 3 deletions
diff --git a/src/server/LV2Plugin.hpp b/src/server/LV2Plugin.hpp
index f490bbfd..43d0fba9 100644
--- a/src/server/LV2Plugin.hpp
+++ b/src/server/LV2Plugin.hpp
@@ -21,7 +21,6 @@
#include "ingen/types.hpp"
#include "lilv/lilv.h"
-#include "raul/URI.hpp"
#include "PluginImpl.hpp"
@@ -57,9 +56,9 @@ public:
void load_presets();
- Raul::URI bundle_uri() const {
+ URI bundle_uri() const {
const LilvNode* bundle = lilv_plugin_get_bundle_uri(_lilv_plugin);
- return Raul::URI(lilv_node_as_uri(bundle));
+ return URI(lilv_node_as_uri(bundle));
}
private: