From 9b3c2ddf33b0f9461643d7b7fa39e5e8668e77a2 Mon Sep 17 00:00:00 2001 From: David Robillard Date: Wed, 11 Apr 2012 23:58:42 +0000 Subject: Write port values in presets as pretty numbers. git-svn-id: http://svn.drobilla.net/lad/trunk/sratom@4168 a436a847-0d15-0410-975c-d299462d15a1 --- sratom/sratom.h | 20 ++++++++++++++------ 1 file changed, 14 insertions(+), 6 deletions(-) (limited to 'sratom') diff --git a/sratom/sratom.h b/sratom/sratom.h index bd4a572..046210a 100644 --- a/sratom/sratom.h +++ b/sratom/sratom.h @@ -78,10 +78,7 @@ sratom_free(Sratom* sratom); /** Set the sink(s) where sratom will write its output. - This must be called before calling sratom_write(). If @p pretty_numbers is - true, numbers will be written as pretty Turtle literals, rather than string - literals with precise types. The cost of this is the types might get - fudged on a round-trip to RDF and back. + This must be called before calling sratom_write(). */ SRATOM_API void @@ -89,8 +86,19 @@ sratom_set_sink(Sratom* sratom, const char* base_uri, SerdStatementSink sink, SerdEndSink end_sink, - void* handle, - bool pretty_numbers); + void* handle); + +/** + Write pretty numeric literals. + + If @p pretty_numbers is true, numbers will be written as pretty Turtle + literals, rather than string literals with precise types. The cost of this + is that the types might get fudged on a round-trip to RDF and back. +*/ +SRATOM_API +void +sratom_set_pretty_numbers(Sratom* sratom, + bool pretty_numbers); /** Write an Atom to RDF. -- cgit v1.2.1