json/docs/examples/flatten.cpp

33 lines
598 B
C++
Raw Normal View History

#include <iostream>
2018-08-16 21:53:47 +02:00
#include <iomanip>
#include <nlohmann/json.hpp>
2016-04-17 17:39:35 +02:00
using json = nlohmann::json;
int main()
{
// create JSON value
json j =
{
{"pi", 3.141},
{"happy", true},
{"name", "Niels"},
{"nothing", nullptr},
{
"answer", {
{"everything", 42}
}
},
{"list", {1, 0, 2}},
{
"object", {
{"currency", "USD"},
2016-04-30 10:39:03 +02:00
{"value", 42.99}
2016-04-17 17:39:35 +02:00
}
}
};
// call flatten()
std::cout << std::setw(4) << j.flatten() << '\n';
}