| JsonCpp project page | JsonCpp home page | 
Configuration passed to reader and writer. More...
#include <json/features.h>
 Collaboration diagram for Json::Features:
 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_ | 
| trueif comments are allowed. Default:true.  More... | |
| bool | strictRoot_ | 
| trueif root must be either an array or an object value.  More... | |
| bool | allowDroppedNullPlaceholders_ | 
| trueif dropped null placeholders are allowed. Default:false.  More... | |
| bool | allowNumericKeys_ | 
| trueif 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 features.h.
| Json::Features::Features | ( | ) | 
Initialize the configuration like JsonConfig::allFeatures;.
Definition at line 66 of file json_reader.cpp.
Referenced by all().
 Here is the caller graph for this function:
 Here is the caller graph for this function:| 
 | static | 
A configuration that allows all features and assumes all strings are UTF-8.
Definition at line 70 of file json_reader.cpp.
References Features().
| 
 | static | 
A configuration that is strictly compatible with the JSON specification.
Definition at line 72 of file json_reader.cpp.
References allowComments_, allowDroppedNullPlaceholders_, allowNumericKeys_, and strictRoot_.
| bool Json::Features::allowComments_ | 
true if comments are allowed. Default: true. 
Definition at line 44 of file features.h.
Referenced by Json::Reader::parse(), and strictMode().
| bool Json::Features::allowDroppedNullPlaceholders_ | 
true if dropped null placeholders are allowed. Default: false. 
Definition at line 51 of file features.h.
Referenced by Json::Reader::parse(), and strictMode().
| bool Json::Features::allowNumericKeys_ | 
true if numeric object key are allowed. Default: false. 
Definition at line 54 of file features.h.
Referenced by Json::normalizeEOL(), and strictMode().
| bool Json::Features::strictRoot_ | 
true if root must be either an array or an object value. 
Default: false. 
Definition at line 48 of file features.h.
Referenced by Json::Reader::parse(), and strictMode().