c@75: json11 c@75: ------ c@75: c@75: json11 is a tiny JSON library for C++11, providing JSON parsing and serialization. c@75: c@75: The core object provided by the library is json11::Json. A Json object represents any JSON c@75: value: null, bool, number (int or double), string (std::string), array (std::vector), or c@75: object (std::map). c@75: c@75: Json objects act like values. They can be assigned, copied, moved, compared for equality or c@75: order, and so on. There are also helper methods Json::dump, to serialize a Json to a string, and c@75: Json::parse (static) to parse a std::string as a Json object. c@75: c@75: It's easy to make a JSON object with C++11's new initializer syntax: c@75: c@75: Json my_json = Json::object { c@75: { "key1", "value1" }, c@75: { "key2", false }, c@75: { "key3", Json::array { 1, 2, 3 } }, c@75: }; c@75: std::string json_str = my_json.dump(); c@75: c@75: There are also implicit constructors that allow standard and user-defined types to be c@75: automatically converted to JSON. For example: c@75: c@75: class Point { c@75: public: c@75: int x; c@75: int y; c@75: Point (int x, int y) : x(x), y(y) {} c@75: Json to_json() const { return Json::array { x, y }; } c@75: }; c@75: c@75: std::vector points = { { 1, 2 }, { 10, 20 }, { 100, 200 } }; c@75: std::string points_json = Json(points).dump(); c@75: c@75: JSON values can have their values queried and inspected: c@75: c@75: Json json = Json::array { Json::object { { "k", "v" } } }; c@75: std::string str = json[0]["k"].string_value(); c@75: c@75: More documentation is still to come. For now, see json11.hpp.