DeepCover Embedded Security in IoT: Public-key Secured Data Paths

Dependencies:   MaximInterface

Embed: (wiki syntax)

« Back to documentation index

rapidjson.h File Reference

rapidjson.h File Reference

common definitions and configuration More...

Go to the source code of this file.

Namespaces

namespace  rapidjson
 

main RapidJSON namespace


Enumerations

enum  Type {
  kNullType = 0, kFalseType = 1, kTrueType = 2, kObjectType = 3,
  kArrayType = 4, kStringType = 5, kNumberType = 6
}
 

Type of JSON value.

More...

Variables

RAPIDJSON_NAMESPACE_BEGIN
typedef unsigned 
SizeType
 Size type (for string lengths, array sizes, etc.)

Detailed Description

common definitions and configuration

See also:
RapidJSON configuration

Definition in file rapidjson.h.


Enumeration Type Documentation

enum Type

Type of JSON value.

Enumerator:
kNullType 

null

kFalseType 

false

kTrueType 

true

kObjectType 

object

kArrayType 

array

kStringType 

string

kNumberType 

number

Definition at line 603 of file rapidjson.h.


Variable Documentation

RAPIDJSON_NAMESPACE_BEGIN typedef unsigned SizeType

Size type (for string lengths, array sizes, etc.)

RapidJSON uses 32-bit array/string indices even on 64-bit platforms, instead of using size_t. Users may override the SizeType by defining RAPIDJSON_NO_SIZETYPEDEFINE.

Definition at line 380 of file rapidjson.h.