diff options
author | David Robillard <d@drobilla.net> | 2021-08-09 18:28:35 -0400 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2023-12-02 18:49:08 -0500 |
commit | fc2114a10769349d38b3215bc95ded855a2be5b6 (patch) | |
tree | 38c79a33bac7d81718e18aced31b238235e8a44d /include | |
parent | 9b1139fe7045a0630e87501235af21803860b80c (diff) | |
download | serd-fc2114a10769349d38b3215bc95ded855a2be5b6.tar.gz serd-fc2114a10769349d38b3215bc95ded855a2be5b6.tar.bz2 serd-fc2114a10769349d38b3215bc95ded855a2be5b6.zip |
[WIP] Preserve anonymous graph syntax in TriG
[WIP] Untested
Diffstat (limited to 'include')
-rw-r--r-- | include/serd/statement.h | 13 |
1 files changed, 7 insertions, 6 deletions
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 |