|
Electroneum
|
#include "allocators.h"#include "stream.h"#include "encodedstream.h"#include "internal/meta.h"#include "internal/stack.h"#include "internal/strtod.h"#include <limits>#include "error/error.h"

Go to the source code of this file.
Classes | |
| struct | BaseReaderHandler< Encoding, Derived > |
| Default implementation of Handler. More... | |
| class | internal::StreamLocalCopy< Stream, 1 > |
| Do copy optimization. More... | |
| class | internal::StreamLocalCopy< Stream, 0 > |
| Keep reference. More... | |
| class | GenericReader< SourceEncoding, TargetEncoding, StackAllocator > |
| SAX-style JSON parser. Use Reader for UTF8 encoding and default allocator. More... | |
Namespaces | |
| namespace | internal |
Macros | |
| #define | RAPIDJSON_PARSE_ERROR_NORETURN(parseErrorCode, offset) |
| Macro to indicate a parse error. | |
| #define | RAPIDJSON_PARSE_ERROR(parseErrorCode, offset) |
| (Internal) macro to indicate and handle a parse error. | |
| #define | RAPIDJSON_PARSE_DEFAULT_FLAGS kParseNoFlags |
Typedefs | |
| typedef GenericReader< UTF8<>, UTF8<> > | Reader |
| Reader with UTF8 encoding and default allocator. | |
Enumerations | |
| enum | ParseFlag { kParseNoFlags = 0 , kParseInsituFlag = 1 , kParseValidateEncodingFlag = 2 , kParseIterativeFlag = 4 , kParseStopWhenDoneFlag = 8 , kParseFullPrecisionFlag = 16 , kParseCommentsFlag = 32 , kParseNumbersAsStringsFlag = 64 , kParseTrailingCommasFlag = 128 , kParseNanAndInfFlag = 256 , kParseDefaultFlags = RAPIDJSON_PARSE_DEFAULT_FLAGS } |
| Combination of parseFlags. More... | |
Functions | |
| template<typename InputStream> | |
| void | SkipWhitespace (InputStream &is) |
| Skip the JSON white spaces in a stream. | |
| const char * | SkipWhitespace (const char *p, const char *end) |
| #define RAPIDJSON_PARSE_DEFAULT_FLAGS kParseNoFlags |
| typedef GenericReader<UTF8<>, UTF8<> > Reader |
| enum ParseFlag |
Combination of parseFlags.
Definition at line 145 of file reader.h.
|
inline |
| void SkipWhitespace | ( | InputStream & | is | ) |
Skip the JSON white spaces in a stream.
| is | A input stream for skipping white spaces. |
Definition at line 264 of file reader.h.
