Pyrogenesis  trunk
json_spirit_writer_options.h
Go to the documentation of this file.
1 #ifndef JSON_SPIRIT_WRITER_OPTIONS
2 #define JSON_SPIRIT_WRITER_OPTIONS
3 
4 // Copyright John W. Wilkinson 2007 - 2013
5 // Distributed under the MIT License, see accompanying file LICENSE.txt
6 
7 // json spirit version 4.06
8 
9 #if defined(_MSC_VER) && (_MSC_VER >= 1020)
10 # pragma once
11 #endif
12 
13 namespace json_spirit
14 {
15  enum Output_options{ pretty_print = 0x01, // Add whitespace to format the output nicely.
16 
17  raw_utf8 = 0x02, // This prevents non-printable characters from being escapted using "\uNNNN" notation.
18  // Note, this is an extension to the JSON standard. It disables the escaping of
19  // non-printable characters allowing UTF-8 sequences held in 8 bit char strings
20  // to pass through unaltered.
21 
23  // outputs e.g. "1.200000000000000" as "1.2"
25  // pretty printing except that arrays printed on single lines unless they contain
26  // composite elements, i.e. objects or arrays
28  // all unicode wide characters are escaped, i.e. outputed as "\uXXXX", even if they are
29  // printable under the current locale, ascii printable chars are not escaped
30  };
31 }
32 
33 #endif
Definition: json_spirit_writer_options.h:22
Definition: json_spirit_writer_options.h:15
Definition: json_spirit_writer_options.h:17
Definition: json_spirit_error_position.h:15
Definition: json_spirit_writer_options.h:24
Output_options
Definition: json_spirit_writer_options.h:15
Definition: json_spirit_writer_options.h:27