diff options
author | David Robillard <d@drobilla.net> | 2012-02-27 23:30:54 +0000 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2012-02-27 23:30:54 +0000 |
commit | d175e2de6d3b51dfa1af5ea95bdad6e8c97df795 (patch) | |
tree | c074ce18bfd52b18d374fb5c59a1369a65576f2e /src/world.c | |
parent | 72e3c06d3a6b2558e5e156f917e1c28441819417 (diff) | |
download | lilv-d175e2de6d3b51dfa1af5ea95bdad6e8c97df795.tar.gz lilv-d175e2de6d3b51dfa1af5ea95bdad6e8c97df795.tar.bz2 lilv-d175e2de6d3b51dfa1af5ea95bdad6e8c97df795.zip |
Implement lv2:relation.
git-svn-id: http://svn.drobilla.net/lad/trunk/lilv@4002 a436a847-0d15-0410-975c-d299462d15a1
Diffstat (limited to 'src/world.c')
-rw-r--r-- | src/world.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/world.c b/src/world.c index 28a58c5..198a02a 100644 --- a/src/world.c +++ b/src/world.c @@ -62,6 +62,7 @@ lilv_world_new(void) world->uris.lv2_Plugin = NEW_URI(LILV_NS_LV2 "Plugin"); world->uris.lv2_port = NEW_URI(LILV_NS_LV2 "port"); world->uris.lv2_portProperty = NEW_URI(LILV_NS_LV2 "portProperty"); + world->uris.lv2_relation = NEW_URI(LILV_NS_LV2 "relation"); world->uris.lv2_reportsLatency = NEW_URI(LILV_NS_LV2 "reportsLatency"); world->uris.lv2_requiredFeature = NEW_URI(LILV_NS_LV2 "requiredFeature"); world->uris.lv2_Specification = NEW_URI(LILV_NS_LV2 "Specification"); |