JsonCpp project page JsonCpp home page

Public Member Functions | Static Public Member Functions | Public Attributes

Json::Features Class Reference

Configuration passed to reader and writer. More...

#include <json/features.h>

Collaboration diagram for Json::Features:

List of all members.

Public Member Functions

 Features ()
 Initialize the configuration like JsonConfig::allFeatures;.

Static Public Member Functions

static Features all ()
 A configuration that allows all features and assumes all strings are UTF-8.
static Features strictMode ()
 A configuration that is strictly compatible with the JSON specification.

Public Attributes

bool allowComments_
 true if comments are allowed. Default: true.
bool strictRoot_
 true if root must be either an array or an object value.
bool allowDroppedNullPlaceholders_
 true if dropped null placeholders are allowed. Default: false.
bool allowNumericKeys_
 true if numeric object key are allowed. Default: false.

Detailed Description

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 20 of file features.h.


Constructor & Destructor Documentation

Json::Features::Features ( )

Initialize the configuration like JsonConfig::allFeatures;.

Definition at line 44 of file json_reader.cpp.

Referenced by all().

Here is the caller graph for this function:


Member Function Documentation

Features Json::Features::all ( ) [static]

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 48 of file json_reader.cpp.

References Features().

Features Json::Features::strictMode ( ) [static]

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 50 of file json_reader.cpp.

References allowComments_, allowDroppedNullPlaceholders_, allowNumericKeys_, and strictRoot_.


Member Data Documentation

true if comments are allowed. Default: true.

Definition at line 43 of file features.h.

Referenced by Json::Reader::parse(), and strictMode().

true if dropped null placeholders are allowed. Default: false.

Definition at line 50 of file features.h.

Referenced by strictMode().

true if numeric object key are allowed. Default: false.

Definition at line 53 of file features.h.

Referenced by strictMode().

true if root must be either an array or an object value.

Default: false.

Definition at line 47 of file features.h.

Referenced by Json::Reader::parse(), and strictMode().


The documentation for this class was generated from the following files: