Configuration passed to reader and writer. More...
#include <json/json_features.h>
Collaboration diagram for Json::Features:Public Member Functions | |
| Features () | |
| Initialize the configuration like JsonConfig::allFeatures;. More... | |
Static Public Member Functions | |
| 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... | |
Public Attributes | |
| bool | allowComments_ {true} |
true if comments are allowed. Default: true. More... | |
| bool | strictRoot_ {false} |
true if root must be either an array or an object value. More... | |
| bool | allowDroppedNullPlaceholders_ {false} |
true if dropped null placeholders are allowed. Default: false. More... | |
| bool | allowNumericKeys_ {false} |
true if numeric object key are allowed. Default: false. 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 21 of file json_features.h.
|
default |
Initialize the configuration like JsonConfig::allFeatures;.
|
static |
A configuration that allows all features and assumes all strings are UTF-8.
Definition at line 66 of file json_reader.cpp.
Referenced by strictMode().
Here is the caller graph for this function:
|
static |
A configuration that is strictly compatible with the JSON specification.
Definition at line 68 of file json_reader.cpp.
References all(), allowComments_, allowDroppedNullPlaceholders_, allowNumericKeys_, Json::arrayValue, Json::Value::asString(), Json::codePointToUTF8(), Json::commentAfter, Json::commentAfterOnSameLine, Json::commentBefore, Json::Value::getOffsetLimit(), Json::Value::getOffsetStart(), Json::Value::isArray(), Json::Value::isObject(), jsoncpp_snprintf, Json::Value::maxInt, Json::Value::maxLargestInt, Json::Value::maxLargestUInt, Json::Value::minLargestInt, Json::objectValue, Json::Value::setComment(), stackLimit_g, strictRoot_, and Json::Value::swapPayload().
| bool Json::Features::allowComments_ {true} |
true if comments are allowed. Default: true.
Definition at line 44 of file json_features.h.
Referenced by strictMode().
| bool Json::Features::allowDroppedNullPlaceholders_ {false} |
true if dropped null placeholders are allowed. Default: false.
Definition at line 51 of file json_features.h.
Referenced by strictMode().
| bool Json::Features::allowNumericKeys_ {false} |
true if numeric object key are allowed. Default: false.
Definition at line 54 of file json_features.h.
Referenced by strictMode().
| bool Json::Features::strictRoot_ {false} |
true if root must be either an array or an object value.
Default: false.
Definition at line 48 of file json_features.h.
Referenced by strictMode().
1.8.11