json/doc/examples/basic_json__object_t.cpp

16 lines
278 B
C++
Raw Normal View History

2015-06-21 00:59:33 +02:00
#include <json.hpp>
using json = nlohmann::json;
2015-06-21 00:59:33 +02:00
int main()
{
// create an object_t value
json::object_t value = { {"one", 1}, {"two", 2} };
// create a JSON object from the value
json j(value);
// serialize the JSON object
std::cout << j << '\n';
}