2019-03-19 17:06:35 +08:00
|
|
|
#include <iostream>
|
|
|
|
#include <nlohmann/json.hpp>
|
|
|
|
|
|
|
|
using json = nlohmann::json;
|
|
|
|
|
|
|
|
int main()
|
|
|
|
{
|
|
|
|
// create a JSON pointer
|
|
|
|
json::json_pointer ptr("/foo");
|
2022-07-29 20:28:37 +08:00
|
|
|
std::cout << "\"" << ptr << "\"\n";
|
2019-03-19 17:06:35 +08:00
|
|
|
|
2019-10-19 17:59:46 +08:00
|
|
|
// append a JSON Pointer
|
2019-03-19 17:06:35 +08:00
|
|
|
ptr /= json::json_pointer("/bar/baz");
|
2022-07-29 20:28:37 +08:00
|
|
|
std::cout << "\"" << ptr << "\"\n";
|
2019-03-19 17:06:35 +08:00
|
|
|
|
|
|
|
// append a string
|
|
|
|
ptr /= "fob";
|
2022-07-29 20:28:37 +08:00
|
|
|
std::cout << "\"" << ptr << "\"\n";
|
2019-03-19 17:06:35 +08:00
|
|
|
|
|
|
|
// append an array index
|
|
|
|
ptr /= 42;
|
2022-07-29 20:28:37 +08:00
|
|
|
std::cout << "\"" << ptr << "\"" << std::endl;
|
2019-03-19 17:06:35 +08:00
|
|
|
}
|