From 0474b622e7fb5b58268bd7064f054a75d1e3a550 Mon Sep 17 00:00:00 2001 From: David Robillard Date: Sun, 10 Mar 2019 22:50:31 +0100 Subject: Add support for writing terse collections --- serd/serd.h | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to 'serd') diff --git a/serd/serd.h b/serd/serd.h index bde720b9..f320cc19 100644 --- a/serd/serd.h +++ b/serd/serd.h @@ -128,7 +128,9 @@ typedef enum { SERD_ANON_S = 1 << 1, ///< Start of anonymous subject SERD_ANON_O = 1 << 2, ///< Start of anonymous object SERD_LIST_S = 1 << 3, ///< Start of list subject - SERD_LIST_O = 1 << 4 ///< Start of list object + SERD_LIST_O = 1 << 4, ///< Start of list object + SERD_TERSE_S = 1 << 5, ///< Terse serialisation of new subject + SERD_TERSE_O = 1 << 6 ///< Terse serialisation of new object } SerdStatementFlag; /// Bitwise OR of SerdStatementFlag values -- cgit v1.2.1