json/doc/examples/object.cpp

18 lines
484 B
C++
Raw Normal View History

2015-06-21 09:44:12 +02:00
#include <json.hpp>
using json = nlohmann::json;
2015-06-21 09:44:12 +02:00
int main()
{
2015-10-02 15:57:40 +02:00
// create JSON objects
2015-06-21 09:44:12 +02: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} });
//json j_invalid_list = json::object({ "one", 1 }); // would throw
2015-10-02 15:57:40 +02:00
// serialize the JSON objects
2015-06-21 09:44:12 +02:00
std::cout << j_no_init_list << '\n';
std::cout << j_empty_init_list << '\n';
std::cout << j_list_of_pairs << '\n';
}