CYCLUS
Public Member Functions | Static Public Member Functions | Public Attributes | List of all members
Json::Features Class Reference

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 3062 of file pyne.h.

#include <pyne.h>

Public Member Functions

 Features ()
 

Static Public Member Functions

static Features all ()
 
static Features strictMode ()
 

Public Attributes

bool allowComments_
 
bool strictRoot_
 

Constructor & Destructor Documentation

◆ Features()

Json::Features::Features ( )

Initialize the configuration like JsonConfig::allFeatures;.

Definition at line 13191 of file pyne.cc.

Member Function Documentation

◆ all()

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 13198 of file pyne.cc.

◆ strictMode()

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 13204 of file pyne.cc.

Member Data Documentation

◆ allowComments_

bool Json::Features::allowComments_

true if comments are allowed. Default: true.

Definition at line 3084 of file pyne.h.

◆ strictRoot_

bool Json::Features::strictRoot_

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

Definition at line 3087 of file pyne.h.


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