cocos2d-x  2.2.1
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Groups Pages
Features Class Reference

Configuration passed to reader and writer. More...

#include <features.h>

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 if comments are allowed. Default: true. More...
 
bool strictRoot_
 true if root must be either an array or an object value. Default: false. More...
 

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.

Constructor & Destructor Documentation

Features ( )

Initialize the configuration like JsonConfig::allFeatures;.

var Features ( )

Initialize the configuration like JsonConfig::allFeatures;.

local Features ( )

Initialize the configuration like JsonConfig::allFeatures;.

Member Function Documentation

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
var 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
local 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
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
var 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
local 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

bool allowComments_

true if comments are allowed. Default: true.

var allowComments_

true if comments are allowed. Default: true.

local allowComments_

true if comments are allowed. Default: true.

bool strictRoot_

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

var strictRoot_

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

local strictRoot_

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


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