From 8e2422a0022f5bd8e7d1fe8d1ca7b259451869ea Mon Sep 17 00:00:00 2001 From: Boris Kolpackov Date: Wed, 2 Mar 2022 16:27:48 +0200 Subject: Add ability to serialize pre-serialized JSON value --- libbutl/json/serializer.hxx | 12 ++++++++++++ 1 file changed, 12 insertions(+) (limited to 'libbutl/json/serializer.hxx') diff --git a/libbutl/json/serializer.hxx b/libbutl/json/serializer.hxx index fad91e2..b52bf65 100644 --- a/libbutl/json/serializer.hxx +++ b/libbutl/json/serializer.hxx @@ -235,6 +235,18 @@ namespace butl void value (std::nullptr_t); + // Serialize value as a pre-serialized JSON value. + // + // Note that the value is expected to be a valid (and suitable) UTF-8- + // encoded JSON text. Note also that if pretty-printing is enabled, + // the resulting output may not be correctly indented. + // + void + value_json_text (const char*); + + void + value_json_text (const std::string&); + // Serialize next JSON event. // // If check is false, then don't check whether the value is valid UTF-8 -- cgit v1.1