summaryrefslogtreecommitdiffstats
path: root/ingen/Plugin.hpp
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2014-01-18 06:25:36 +0000
committerDavid Robillard <d@drobilla.net>2014-01-18 06:25:36 +0000
commitec8939dd7ef5267b43bd8ae3590e783495f0cfc9 (patch)
treece151c34851e8a275f35aedb67ea6b4a25676baf /ingen/Plugin.hpp
parent59492c673f5de893e8b91ca50a945a697ddfa404 (diff)
downloadingen-ec8939dd7ef5267b43bd8ae3590e783495f0cfc9.tar.gz
ingen-ec8939dd7ef5267b43bd8ae3590e783495f0cfc9.tar.bz2
ingen-ec8939dd7ef5267b43bd8ae3590e783495f0cfc9.zip
Consolidate URIs.
Add missing definition to ontology. git-svn-id: http://svn.drobilla.net/lad/trunk/ingen@5317 a436a847-0d15-0410-975c-d299462d15a1
Diffstat (limited to 'ingen/Plugin.hpp')
-rw-r--r--ingen/Plugin.hpp7
1 files changed, 4 insertions, 3 deletions
diff --git a/ingen/Plugin.hpp b/ingen/Plugin.hpp
index bc8220da..b69c17c4 100644
--- a/ingen/Plugin.hpp
+++ b/ingen/Plugin.hpp
@@ -20,6 +20,7 @@
#include "raul/URI.hpp"
#include "ingen/Resource.hpp"
+#include "ingen/ingen.h"
#include "lv2/lv2plug.in/ns/lv2core/lv2.h"
@@ -41,10 +42,10 @@ public:
static inline const Raul::URI& type_uri(Type type) {
static const Raul::URI uris[] = {
- Raul::URI("http://drobilla.net/ns/ingen#nil"),
+ Raul::URI("http://www.w3.org/2002/07/owl#Nothing"),
Raul::URI(LV2_CORE__Plugin),
- Raul::URI("http://drobilla.net/ns/ingen#Internal"),
- Raul::URI("http://drobilla.net/ns/ingen#Graph")
+ Raul::URI(INGEN__Internal),
+ Raul::URI(INGEN__Graph)
};
return uris[type];