From 77d22f06129e91f51e37c09c71c0917a0136dd7d Mon Sep 17 00:00:00 2001 From: David Robillard Date: Thu, 28 Apr 2011 22:14:04 +0000 Subject: Switch to Lilv from SLV2. git-svn-id: http://svn.drobilla.net/lad/trunk/ingen@3220 a436a847-0d15-0410-975c-d299462d15a1 --- src/server/LV2Plugin.hpp | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) (limited to 'src/server/LV2Plugin.hpp') diff --git a/src/server/LV2Plugin.hpp b/src/server/LV2Plugin.hpp index e4360398..127300cf 100644 --- a/src/server/LV2Plugin.hpp +++ b/src/server/LV2Plugin.hpp @@ -20,8 +20,8 @@ #include "ingen-config.h" -#ifndef HAVE_SLV2 -#error "This file requires SLV2, but HAVE_SLV2 is not defined. Please report." +#ifndef HAVE_LILV +#error "This file requires Lilv, but HAVE_LILV is not defined. Please report." #endif #include @@ -30,7 +30,7 @@ #include #include -#include "slv2/slv2.h" +#include "lilv/lilv.h" #include "raul/SharedPtr.hpp" #include "PluginImpl.hpp" @@ -61,11 +61,11 @@ public: const std::string& library_path() const; - SLV2Plugin slv2_plugin() const { return _slv2_plugin; } - void slv2_plugin(SLV2Plugin p); + LilvPlugin lilv_plugin() const { return _lilv_plugin; } + void lilv_plugin(LilvPlugin p); private: - SLV2Plugin _slv2_plugin; + LilvPlugin _lilv_plugin; SharedPtr _lv2_info; }; -- cgit v1.2.1