From c7dfad1db675f417b09fd3748473b26cc0ea85be Mon Sep 17 00:00:00 2001 From: David Robillard Date: Sun, 23 Jan 2011 08:16:49 +0000 Subject: SerdNodeType => SerdType. git-svn-id: http://svn.drobilla.net/serd/trunk@43 490d8e77-9747-427b-9fa3-0b8f29cee8a0 --- serd/serd.h | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) (limited to 'serd') diff --git a/serd/serd.h b/serd/serd.h index 8f8dfdf3..5258b4fb 100644 --- a/serd/serd.h +++ b/serd/serd.h @@ -68,7 +68,7 @@ typedef enum { * node is either a resource, literal, or blank. In syntax there are two * ways to refer to a resource (URI or CURIE), and two ways to refer to a * blank node (with a blank ID, or anonymously). Serd represents nodes as - * an unquoted UTF-8 string "value" associated with a @ref SerdNodeType, + * an unquoted UTF-8 string "value" associated with a @ref SerdType, * which preserves syntactic information allowing for lossless abbreviation. * A non-abbreviating sink may simply consider @ref SERD_ANON_BEGIN and * @ref SERD_ANON equivalent to SERD_BLANK_ID. @@ -107,7 +107,7 @@ typedef enum { */ SERD_ANON = 6 -} SerdNodeType; +} SerdType; /** @name SerdURI * A parsed URI. @@ -248,11 +248,11 @@ typedef bool (*SerdPrefixSink)(void* handle, typedef bool (*SerdStatementSink)(void* handle, const SerdString* graph, const SerdString* subject, - SerdNodeType subject_type, + SerdType subject_type, const SerdString* predicate, - SerdNodeType predicate_type, + SerdType predicate_type, const SerdString* object, - SerdNodeType object_type, + SerdType object_type, const SerdString* object_lang, const SerdString* object_datatype); @@ -331,11 +331,11 @@ bool serd_writer_write_statement(SerdWriter writer, const SerdString* graph, const SerdString* subject, - SerdNodeType subject_type, + SerdType subject_type, const SerdString* predicate, - SerdNodeType predicate_type, + SerdType predicate_type, const SerdString* object, - SerdNodeType object_type, + SerdType object_type, const SerdString* object_datatype, const SerdString* object_lang); -- cgit v1.2.1