From fc2114a10769349d38b3215bc95ded855a2be5b6 Mon Sep 17 00:00:00 2001 From: David Robillard Date: Mon, 9 Aug 2021 18:28:35 -0400 Subject: [WIP] Preserve anonymous graph syntax in TriG [WIP] Untested --- include/serd/statement.h | 13 +++++++------ 1 file changed, 7 insertions(+), 6 deletions(-) (limited to 'include') diff --git a/include/serd/statement.h b/include/serd/statement.h index 9d987922..a4109958 100644 --- a/include/serd/statement.h +++ b/include/serd/statement.h @@ -32,12 +32,13 @@ typedef enum { typedef enum { SERD_EMPTY_S = 1U << 0U, ///< Empty blank node subject SERD_EMPTY_O = 1U << 1U, ///< Empty blank node object - SERD_ANON_S = 1U << 2U, ///< Start of anonymous subject - SERD_ANON_O = 1U << 3U, ///< Start of anonymous object - SERD_LIST_S = 1U << 4U, ///< Start of list subject - SERD_LIST_O = 1U << 5U, ///< Start of list object - SERD_TERSE_S = 1U << 6U, ///< Start of terse subject - SERD_TERSE_O = 1U << 7U, ///< Start of terse object + SERD_EMPTY_G = 1U << 2U, ///< Empty blank node graph + SERD_ANON_S = 1U << 3U, ///< Start of anonymous subject + SERD_ANON_O = 1U << 4U, ///< Start of anonymous object + SERD_LIST_S = 1U << 5U, ///< Start of list subject + SERD_LIST_O = 1U << 6U, ///< Start of list object + SERD_TERSE_S = 1U << 7U, ///< Start of terse subject + SERD_TERSE_O = 1U << 8U, ///< Start of terse object } SerdStatementFlag; /// Bitwise OR of SerdStatementFlag values -- cgit v1.2.1