diff options
author | David Robillard <d@drobilla.net> | 2011-01-31 17:26:30 +0000 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2011-01-31 17:26:30 +0000 |
commit | e98533cbbd871495593879c3ae7b1fe204434a07 (patch) | |
tree | 73aefbfe2513ae5def2f8e235b32cbe37c00031d /src/slv2_internal.h | |
parent | 920128cdb2bb7fe99a000965f26efb2f72cff524 (diff) | |
download | lilv-e98533cbbd871495593879c3ae7b1fe204434a07.tar.gz lilv-e98533cbbd871495593879c3ae7b1fe204434a07.tar.bz2 lilv-e98533cbbd871495593879c3ae7b1fe204434a07.zip |
Remove slv2_value_as_librdf_uri.
git-svn-id: http://svn.drobilla.net/lad/trunk/slv2@2892 a436a847-0d15-0410-975c-d299462d15a1
Diffstat (limited to 'src/slv2_internal.h')
-rw-r--r-- | src/slv2_internal.h | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/src/slv2_internal.h b/src/slv2_internal.h index aa8e878..874c3f5 100644 --- a/src/slv2_internal.h +++ b/src/slv2_internal.h @@ -258,9 +258,9 @@ struct _SLV2Value { } val; }; -SLV2Value slv2_value_new(SLV2World world, SLV2ValueType type, const char* val); -SLV2Value slv2_value_new_from_node(SLV2World world, SLV2Node node); -librdf_uri* slv2_value_as_librdf_uri(SLV2Value value); +SLV2Value slv2_value_new(SLV2World world, SLV2ValueType type, const char* val); +SLV2Value slv2_value_new_from_node(SLV2World world, SLV2Node node); +SLV2Node slv2_value_as_node(SLV2Value value); static inline SLV2Node slv2_node_copy(SLV2Node node) { return librdf_new_node_from_node(node); @@ -290,10 +290,10 @@ void slv2_scale_point_free(SLV2ScalePoint point); typedef librdf_stream* SLV2Matches; -SLV2Matches slv2_plugin_find_statements(SLV2Plugin plugin, - librdf_node* subject, - librdf_node* predicate, - librdf_node* object); +SLV2Matches slv2_plugin_find_statements(SLV2Plugin plugin, + SLV2Node subject, + SLV2Node predicate, + SLV2Node object); static inline bool slv2_matches_next(SLV2Matches matches) { return librdf_stream_next(matches); |