2017-07-09 09:51:38 +00:00
|
|
|
#include <iostream>
|
2018-02-01 21:20:26 +00:00
|
|
|
#include <nlohmann/json.hpp>
|
2015-06-21 07:44:12 +00:00
|
|
|
|
2016-01-30 19:23:14 +00:00
|
|
|
using json = nlohmann::json;
|
2015-06-21 07:44:12 +00:00
|
|
|
|
|
|
|
int main()
|
|
|
|
{
|
2015-10-02 13:57:40 +00:00
|
|
|
// create JSON objects
|
2015-06-21 07:44:12 +00:00
|
|
|
json j_no_init_list = json::object();
|
|
|
|
json j_empty_init_list = json::object({});
|
|
|
|
json j_list_of_pairs = json::object({ {"one", 1}, {"two", 2} });
|
|
|
|
|
2015-10-02 13:57:40 +00:00
|
|
|
// serialize the JSON objects
|
2015-06-21 07:44:12 +00:00
|
|
|
std::cout << j_no_init_list << '\n';
|
|
|
|
std::cout << j_empty_init_list << '\n';
|
|
|
|
std::cout << j_list_of_pairs << '\n';
|
2017-03-08 22:12:13 +00:00
|
|
|
|
|
|
|
// example for an exception
|
|
|
|
try
|
|
|
|
{
|
|
|
|
// can only create an object from a list of pairs
|
|
|
|
json j_invalid_object = json::object({{ "one", 1, 2 }});
|
|
|
|
}
|
|
|
|
catch (json::type_error& e)
|
|
|
|
{
|
|
|
|
std::cout << e.what() << '\n';
|
|
|
|
}
|
2015-06-21 07:44:12 +00:00
|
|
|
}
|