#include "json_features.h"
#include "value.h"
#include <deque>
#include <iosfwd>
#include <istream>
#include <stack>
#include <string>
Classes | |
class | Json::CharReader |
Interface for reading JSON from a char array. More... | |
class | Json::CharReader::Factory |
class | Json::CharReaderBuilder |
Build a CharReader implementation. More... | |
Namespaces | |
Json | |
JSON (JavaScript Object Notation). | |
Functions | |
class | Json::__declspec (deprecated("Use CharReader and CharReaderBuilder instead.")) Reader |
Unserialize a JSON document into a Value. More... | |
bool | Json::parseFromStream (CharReader::Factory const &, IStream &, Value *root, String *errs) |
Consume entire stream and use its begin/end. More... | |
IStream & | Json::operator>> (IStream &, Value &) |
Read from 'sin' into 'root'. More... | |