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 16:30:08 +00:00
|
|
|
|
2016-01-30 19:23:14 +00:00
|
|
|
using json = nlohmann::json;
|
2015-06-21 16:30:08 +00:00
|
|
|
|
|
|
|
int main()
|
|
|
|
{
|
|
|
|
// create a JSON value
|
|
|
|
json a = 23;
|
|
|
|
|
|
|
|
// move contents of a to b
|
|
|
|
json b(std::move(a));
|
|
|
|
|
|
|
|
// serialize the JSON arrays
|
|
|
|
std::cout << a << '\n';
|
|
|
|
std::cout << b << '\n';
|
|
|
|
}
|