2015-06-20 22:59:33 +00:00
|
|
|
#include <json.hpp>
|
|
|
|
|
2016-01-30 19:23:14 +00:00
|
|
|
using json = nlohmann::json;
|
2015-06-20 22:59:33 +00:00
|
|
|
|
|
|
|
int main()
|
|
|
|
{
|
|
|
|
// create JSON values
|
|
|
|
json j_null;
|
|
|
|
json j_boolean = true;
|
|
|
|
json j_number_integer = 17;
|
|
|
|
json j_number_float = 23.42;
|
2016-01-26 19:07:03 +00:00
|
|
|
json j_number_unsigned_integer = 12345678987654321u;
|
2015-06-20 22:59:33 +00:00
|
|
|
json j_object = {{"one", 1}, {"two", 2}};
|
|
|
|
json j_array = {1, 2, 4, 8, 16};
|
|
|
|
json j_string = "Hello, world";
|
|
|
|
|
|
|
|
// call is_object()
|
|
|
|
std::cout << std::boolalpha;
|
|
|
|
std::cout << j_null.is_object() << '\n';
|
|
|
|
std::cout << j_boolean.is_object() << '\n';
|
|
|
|
std::cout << j_number_integer.is_object() << '\n';
|
2016-01-26 19:07:03 +00:00
|
|
|
std::cout << j_number_unsigned_integer.is_object() << '\n';
|
2015-06-20 22:59:33 +00:00
|
|
|
std::cout << j_number_float.is_object() << '\n';
|
|
|
|
std::cout << j_object.is_object() << '\n';
|
|
|
|
std::cout << j_array.is_object() << '\n';
|
|
|
|
std::cout << j_string.is_object() << '\n';
|
|
|
|
}
|