You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
409 B
19 lines
409 B
#include <json.hpp>
|
|
|
|
using json = nlohmann::json;
|
|
|
|
int main()
|
|
{
|
|
// create a JSON value
|
|
json value = { "the good", "the bad", "the ugly" };
|
|
|
|
// create string_t
|
|
json::string_t string = "the fast";
|
|
|
|
// swap the object stored in the JSON value
|
|
value[1].swap(string);
|
|
|
|
// output the values
|
|
std::cout << "value = " << value << '\n';
|
|
std::cout << "string = " << string << '\n';
|
|
}
|