diff options
author | David Robillard <d@drobilla.net> | 2017-01-05 16:22:52 -0500 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2017-01-05 16:22:52 -0500 |
commit | 0c71ed6ce02ee7ff65a5da2cf863c5712a67cb4b (patch) | |
tree | 217344e3fac3b1f6cb8e116ef257cfa39835529f /serd/serd.h | |
parent | 4c6600603704454df7c3a21039111f195d2d0ff1 (diff) | |
download | serd-0c71ed6ce02ee7ff65a5da2cf863c5712a67cb4b.tar.gz serd-0c71ed6ce02ee7ff65a5da2cf863c5712a67cb4b.tar.bz2 serd-0c71ed6ce02ee7ff65a5da2cf863c5712a67cb4b.zip |
Add support for NQuads
Diffstat (limited to 'serd/serd.h')
-rw-r--r-- | serd/serd.h | 10 |
1 files changed, 8 insertions, 2 deletions
diff --git a/serd/serd.h b/serd/serd.h index 9e48e7da..3402d576 100644 --- a/serd/serd.h +++ b/serd/serd.h @@ -1,5 +1,5 @@ /* - Copyright 2011-2016 David Robillard <http://drobilla.net> + Copyright 2011-2017 David Robillard <http://drobilla.net> Permission to use, copy, modify, and/or distribute this software for any purpose with or without fee is hereby granted, provided that the above @@ -110,7 +110,13 @@ typedef enum { NTriples - Line-based RDF triples (ASCII). @see <a href="http://www.w3.org/TR/rdf-testcases#ntriples">NTriples</a> */ - SERD_NTRIPLES = 2 + SERD_NTRIPLES = 2, + + /** + NQuads - Line-based RDF quads (UTF-8). + @see <a href="https://www.w3.org/TR/n-quads/">NQuads</a> + */ + SERD_NQUADS = 3 } SerdSyntax; /** |