aboutsummaryrefslogtreecommitdiffstats
path: root/serd
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2018-06-03 19:47:07 +0200
committerDavid Robillard <d@drobilla.net>2020-10-27 13:13:58 +0100
commit897590f6408b9b2b1aae2a060465da6d0faf42be (patch)
tree488932c54be7e580b243780d78e126afc89bd8ec /serd
parent995766383b56addc1144d885dd8ca5abc8587afa (diff)
downloadserd-897590f6408b9b2b1aae2a060465da6d0faf42be.tar.gz
serd-897590f6408b9b2b1aae2a060465da6d0faf42be.tar.bz2
serd-897590f6408b9b2b1aae2a060465da6d0faf42be.zip
Make statement sink take a statement rather than nodes
This makes the interface more extensible, towards associating more information with statements. The serd_sink_write_nodes wrapper remains so that user code does not need to allocate in order to write statement.
Diffstat (limited to 'serd')
-rw-r--r--serd/serd.h9
1 files changed, 3 insertions, 6 deletions
diff --git a/serd/serd.h b/serd/serd.h
index 0429cefb..382506f7 100644
--- a/serd/serd.h
+++ b/serd/serd.h
@@ -777,12 +777,9 @@ typedef SerdStatus (*SerdPrefixSink)(void* handle,
Called for every RDF statement in the serialisation.
*/
-typedef SerdStatus (*SerdStatementSink)(void* handle,
- SerdStatementFlags flags,
- const SerdNode* graph,
- const SerdNode* subject,
- const SerdNode* predicate,
- const SerdNode* object);
+typedef SerdStatus (*SerdStatementSink)(void* handle,
+ SerdStatementFlags flags,
+ const SerdStatement* statement);
/**
Sink (callback) for anonymous node end markers.