CMSC23700 Common Code Library
Support code for CS23700 programming projects
Loading...
Searching...
No Matches
json Namespace Reference

Classes

class  Array
 JSON arrays. More...
 
class  Bool
 
class  Integer
 
class  Null
 
class  Number
 base class for JSON numbers More...
 
class  Object
 JSON objects. More...
 
class  Real
 
class  String
 
class  Value
 

Enumerations

enum  Type {
  T_OBJECT , T_ARRAY , T_INTEGER , T_REAL ,
  T_STRING , T_BOOL , T_NULL
}
 the types of JSON values More...
 

Functions

ValueparseFile (std::string filename)
 
std::ostream & operator<< (std::ostream &s, Value *v)
 

Enumeration Type Documentation

◆ Type

enum json::Type

the types of JSON values

Enumerator
T_OBJECT 

object consisting of name-value pairs

T_ARRAY 

arrays of JSON values

T_INTEGER 

integer numbers (represented as int64_t)

T_REAL 

real numbers (represented as doubles)

T_STRING 

strings

T_BOOL 

booleans

T_NULL 

the null value

Function Documentation

◆ operator<<()

std::ostream & json::operator<< ( std::ostream &  s,
Value v 
)
inline

◆ parseFile()

Value * json::parseFile ( std::string  filename)