ADTF  3.18.2
Features

Configuration passed to reader and writer. More...

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. More...
 
static Features strictMode ()
 A configuration that is strictly compatible with the JSON specification. More...
 

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

Member Function Documentation

◆ all()

static 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

◆ strictMode()

static 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

Member Data Documentation

◆ strictRoot_

bool strictRoot_

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

Default: false.

Definition at line 48 of file features.h.