Skip to content

darkdukey/simple-json

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

14 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

#Simple Json

Build Status

Simple Json is a json library to parse and manipulate json. The goal of this library is to make it super easy to use.

##Usage

Parse Json

const string json_string = R"({"name":"Nice Guy", "age":42})";

Json json = Json::parse(json_string);

Access value

json["name"].string_value();
json["age"].int_value();

Create Json

Json json;
json["name"] = "Nice Guy";
json.dump();

Check out the test cases for more samples.

##Links Simple Json is heavily inspired by json11

About

simple json for c++

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

 
 
 

Contributors