#include <iostream>
#include <json/value.h>
#include <json/writer.h>
#include <utility>
#include <stdexcept>
#include <cstring>
#include <cassert>
#include <cstddef>
#include "json_batchallocator.h"
#include "json_internalarray.inl"
#include "json_internalmap.inl"
#include "json_valueiterator.inl"
Go to the source code of this file.
|
| Json |
| JSON (JavaScript Object Notation).
|
|
◆ JSON_ASSERT
#define JSON_ASSERT |
( |
|
condition | ) |
assert( condition ); |
◆ JSON_ASSERT_MESSAGE
#define JSON_ASSERT_MESSAGE |
( |
|
condition, |
|
|
|
message |
|
) |
| if (!( condition )) throw std::runtime_error( message ); |
◆ JSON_ASSERT_UNREACHABLE
#define JSON_ASSERT_UNREACHABLE assert( false ) |