allocator.h |
Allocate memory for N items using the standard allocator.
|
2447 |
assertions.h |
It should not be possible for a maliciously designed file to
cause an abort() or seg-fault, so these macros are used only
for pre-condition violations and internal logic errors.
|
2817 |
config.h |
|
5272 |
forwards.h |
|
917 |
json.h |
|
447 |
json_features.h |
\brief Configuration passed to reader and writer.
This configuration object can be used to force the Reader or Writer
to behave in a standard conforming way.
|
1793 |
reader.h |
\brief Unserialize a <a HREF="http://www.json.org">JSON</a> document into a
Value.
\deprecated Use CharReader and CharReaderBuilder.
|
14147 |
value.h |
\brief JSON (JavaScript Object Notation).
|
30295 |
version.h |
|
966 |
writer.h |
Usage:
\code
using namespace Json;
void writeToStdout(StreamWriter::Factory const& factory, Value const& value)
{ std::unique_ptr<StreamWriter> const writer( factory.newStreamWriter());
writer->write(value, &std::cout);
std::cout << std::endl; // add lf and flush
}
\endcode
|
12095 |