diff options
author | David Robillard <d@drobilla.net> | 2011-01-30 04:23:47 +0000 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2011-01-30 04:23:47 +0000 |
commit | 98cd625a7ba5eb91d473c1fe1504c7a9c050ef86 (patch) | |
tree | 1079a7ab5be03cddb56eccbffb5eba381d802fa4 /src/world.c | |
parent | aa524702008b30123be3044b45a526de84312cff (diff) | |
download | lilv-98cd625a7ba5eb91d473c1fe1504c7a9c050ef86.tar.gz lilv-98cd625a7ba5eb91d473c1fe1504c7a9c050ef86.tar.bz2 lilv-98cd625a7ba5eb91d473c1fe1504c7a9c050ef86.zip |
Non-SPARQL version of slv2_port_get_range.
1 query left...
git-svn-id: http://svn.drobilla.net/lad/trunk/slv2@2867 a436a847-0d15-0410-975c-d299462d15a1
Diffstat (limited to 'src/world.c')
-rw-r--r-- | src/world.c | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/src/world.c b/src/world.c index 1909ca5..e4f292c 100644 --- a/src/world.c +++ b/src/world.c @@ -63,6 +63,9 @@ slv2_world_new_internal(SLV2World world) world->lv2_specification_node = NEW_URI(SLV2_NS_LV2 "Specification"); world->lv2_plugin_node = NEW_URI(SLV2_NS_LV2 "Plugin"); world->lv2_binary_node = NEW_URI(SLV2_NS_LV2 "binary"); + world->lv2_default_node = NEW_URI(SLV2_NS_LV2 "default"); + world->lv2_minimum_node = NEW_URI(SLV2_NS_LV2 "minimum"); + world->lv2_maximum_node = NEW_URI(SLV2_NS_LV2 "maximum"); world->lv2_port_node = NEW_URI(SLV2_NS_LV2 "port"); world->lv2_portproperty_node = NEW_URI(SLV2_NS_LV2 "portProperty"); world->lv2_index_node = NEW_URI(SLV2_NS_LV2 "index"); @@ -162,6 +165,9 @@ slv2_world_free(SLV2World world) librdf_free_node(world->lv2_specification_node); librdf_free_node(world->lv2_plugin_node); librdf_free_node(world->lv2_binary_node); + librdf_free_node(world->lv2_default_node); + librdf_free_node(world->lv2_minimum_node); + librdf_free_node(world->lv2_maximum_node); librdf_free_node(world->lv2_port_node); librdf_free_node(world->lv2_portproperty_node); librdf_free_node(world->lv2_index_node); |