Configuration passed to reader and writer. This configuration object can be used to force the Reader or Writer to behave in a standard conforming way.
More...
#include <json.h>
|
| Features () |
| Initialize the configuration like JsonConfig::allFeatures;. More...
|
|
|
static Features | all () |
| A configuration that allows all features and assumes all strings are UTF-8. More...
|
|
static Features | strictMode () |
| A configuration that is strictly compatible with the JSON specification. More...
|
|
Configuration passed to reader and writer. This configuration object can be used to force the Reader or Writer to behave in a standard conforming way.
Definition at line 305 of file json.h.
Json::Features::Features |
( |
| ) |
|
Initialize the configuration like JsonConfig::allFeatures;.
Definition at line 231 of file jsoncpp.cpp.
A configuration that allows all features and assumes all strings are UTF-8.
- C & C++ comments are allowed
- Root object can be any JSON value
- Assumes Value strings are encoded in UTF-8
Definition at line 235 of file jsoncpp.cpp.
A configuration that is strictly compatible with the JSON specification.
- Comments are forbidden.
- Root object must be either an array or an object value.
- Assumes Value strings are encoded in UTF-8
Definition at line 237 of file jsoncpp.cpp.
bool Json::Features::allowComments_ |
true
if comments are allowed. Default: true
.
Definition at line 328 of file json.h.
bool Json::Features::allowDroppedNullPlaceholders_ |
true
if dropped null placeholders are allowed. Default: false
.
Definition at line 335 of file json.h.
bool Json::Features::allowNumericKeys_ |
true
if numeric object key are allowed. Default: false
.
Definition at line 338 of file json.h.
bool Json::Features::strictRoot_ |
true
if root must be either an array or an object value. Default: false
.
Definition at line 332 of file json.h.
The documentation for this class was generated from the following files: