2017-07-09 09:51:38 +00:00
|
|
|
#include <iostream>
|
2018-02-01 21:20:26 +00:00
|
|
|
#include <nlohmann/json.hpp>
|
2015-07-12 15:08:51 +00:00
|
|
|
|
2016-01-30 19:23:14 +00:00
|
|
|
using json = nlohmann::json;
|
2015-07-12 15:08:51 +00:00
|
|
|
|
|
|
|
int main()
|
|
|
|
{
|
|
|
|
// create several JSON values
|
|
|
|
json array = {1, 2, 3};
|
|
|
|
json object = {{"A", "a"}, {"B", "b"}};
|
|
|
|
json number = 17;
|
|
|
|
json string = "foo";
|
|
|
|
json null;
|
|
|
|
|
|
|
|
// output values and comparisons
|
|
|
|
std::cout << std::boolalpha;
|
|
|
|
std::cout << array << " == nullptr " << (array == nullptr) << '\n';
|
|
|
|
std::cout << object << " == nullptr " << (object == nullptr) << '\n';
|
|
|
|
std::cout << number << " == nullptr " << (number == nullptr) << '\n';
|
|
|
|
std::cout << string << " == nullptr " << (string == nullptr) << '\n';
|
|
|
|
std::cout << null << " == nullptr " << (null == nullptr) << '\n';
|
|
|
|
}
|