2017-07-09 09:51:38 +00:00
|
|
|
#include <iostream>
|
2018-08-16 19:53:47 +00:00
|
|
|
#include <iomanip>
|
2018-02-01 21:20:26 +00:00
|
|
|
#include <nlohmann/json.hpp>
|
2015-06-29 21:02:41 +00:00
|
|
|
|
2016-01-30 19:23:14 +00:00
|
|
|
using json = nlohmann::json;
|
2015-06-29 21:02:41 +00:00
|
|
|
|
|
|
|
int main()
|
|
|
|
{
|
|
|
|
// create a JSON object
|
2015-06-29 22:12:18 +00:00
|
|
|
json j =
|
|
|
|
{
|
2015-06-29 21:02:41 +00:00
|
|
|
{"pi", 3.141},
|
|
|
|
{"happy", true},
|
|
|
|
{"name", "Niels"},
|
|
|
|
{"nothing", nullptr},
|
2015-06-29 22:12:18 +00:00
|
|
|
{
|
|
|
|
"answer", {
|
|
|
|
{"everything", 42}
|
|
|
|
}
|
|
|
|
},
|
2015-06-29 21:02:41 +00:00
|
|
|
{"list", {1, 0, 2}},
|
2015-06-29 22:12:18 +00:00
|
|
|
{
|
|
|
|
"object", {
|
|
|
|
{"currency", "USD"},
|
|
|
|
{"value", 42.99}
|
|
|
|
}
|
|
|
|
}
|
2015-06-29 21:02:41 +00:00
|
|
|
};
|
2015-06-29 22:12:18 +00:00
|
|
|
|
2015-06-29 21:02:41 +00:00
|
|
|
// add new values
|
|
|
|
j["new"]["key"]["value"] = {"another", "list"};
|
|
|
|
|
|
|
|
// count elements
|
2017-04-14 15:36:45 +00:00
|
|
|
auto s = j.size();
|
|
|
|
j["size"] = s;
|
2015-06-29 22:12:18 +00:00
|
|
|
|
2015-06-29 21:02:41 +00:00
|
|
|
// pretty print with indent of 4 spaces
|
|
|
|
std::cout << std::setw(4) << j << '\n';
|
|
|
|
}
|