aboutsummaryrefslogtreecommitdiffstats
path: root/include/serd
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2018-12-26 20:04:27 -0500
committerDavid Robillard <d@drobilla.net>2023-12-02 18:49:07 -0500
commit9c00583bd37522a4f1703bf289587b4546edcf53 (patch)
tree745b6fd07df09ab2a5d6eb7119951dcbb9674e5d /include/serd
parent6ea89ed78d344d01de4566ae7cc690c0cfe5673e (diff)
downloadserd-9c00583bd37522a4f1703bf289587b4546edcf53.tar.gz
serd-9c00583bd37522a4f1703bf289587b4546edcf53.tar.bz2
serd-9c00583bd37522a4f1703bf289587b4546edcf53.zip
Remove serd_reader_set_default_graph()
Diffstat (limited to 'include/serd')
-rw-r--r--include/serd/reader.h12
1 files changed, 0 insertions, 12 deletions
diff --git a/include/serd/reader.h b/include/serd/reader.h
index 26641801..aedc5cb3 100644
--- a/include/serd/reader.h
+++ b/include/serd/reader.h
@@ -5,7 +5,6 @@
#define SERD_READER_H
#include "serd/attributes.h"
-#include "serd/node.h"
#include "serd/sink.h"
#include "serd/status.h"
#include "serd/stream.h"
@@ -57,17 +56,6 @@ SERD_API void
serd_reader_add_blank_prefix(SerdReader* SERD_NONNULL reader,
const char* SERD_NULLABLE prefix);
-/**
- Set the URI of the default graph.
-
- If this is set, the reader will emit quads with the graph set to the given
- node for any statements that are not in a named graph (which is currently
- all of them since Serd currently does not support any graph syntaxes).
-*/
-SERD_API void
-serd_reader_set_default_graph(SerdReader* SERD_NONNULL reader,
- const SerdNode* SERD_NULLABLE graph);
-
/// Prepare to read from the file at a local file `uri`
SERD_API SerdStatus
serd_reader_start_file(SerdReader* SERD_NONNULL reader,