#Simple Json
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
const string json_string = R"({"name":"Nice Guy", "age":42})";
Json json = Json::parse(json_string);json["name"].string_value();
json["age"].int_value();Json json;
json["name"] = "Nice Guy";
json.dump();Check out the test cases for more samples.
##Links Simple Json is heavily inspired by json11