mirror of
https://github.com/oxen-io/lokinet.git
synced 2024-11-07 15:20:31 +00:00
19 lines
415 B
C++
19 lines
415 B
C++
#include <iostream>
|
|
#include <iomanip>
|
|
#include <nlohmann/json.hpp>
|
|
|
|
using json = nlohmann::json;
|
|
|
|
int main()
|
|
{
|
|
// create two JSON objects
|
|
json o1 = R"( {"color": "red", "price": 17.99} )"_json;
|
|
json o2 = R"( {"color": "blue", "speed": 100} )"_json;
|
|
|
|
// add all keys from o2 to o1 (updating "color")
|
|
o1.update(o2);
|
|
|
|
// output updated object o1
|
|
std::cout << std::setw(2) << o1 << '\n';
|
|
}
|