From e56e7291095bc9ba2368054601297c2cc65cdf90 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/serd.h') diff --git a/serd/serd.h b/serd/serd.h index 65c1c8b5..ca695dab 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