Class List
Here are the classes, structs, unions and interfaces with brief descriptions:
[detail level 123]
 NrapidjsonMain RapidJSON namespace
 CCrtAllocatorC-runtime library allocator
 CMemoryPoolAllocatorDefault memory allocator used by the parser and DOM
 CCursorStreamWrapperCursor stream wrapper for counting line and column number if error exists
 CGenericValueRepresents a JSON value. Use Value for UTF8 encoding and default allocator
 CGenericDocumentA document for parsing JSON text as DOM
 CGenericMemberName-value pair in a JSON object value
 CGenericMemberIterator(Constant) member iterator for a JSON object value
 CGenericStringRefReference to a constant string (not taking a copy)
 CGenericArrayHelper class for accessing Value of array type
 CGenericObjectHelper class for accessing Value of object type
 CEncodedInputStreamInput byte stream wrapper with a statically bound encoding
 CEncodedInputStream< UTF8<>, MemoryStream >Specialized for UTF8 MemoryStream
 CEncodedOutputStreamOutput byte stream wrapper with statically bound encoding
 CAutoUTFInputStreamInput stream wrapper with dynamically bound encoding and automatic encoding detection
 CAutoUTFOutputStreamOutput stream wrapper with dynamically bound encoding and automatic encoding detection
 CUTF8UTF-8 encoding
 CUTF16UTF-16 encoding
 CUTF16LEUTF-16 little endian encoding
 CUTF16BEUTF-16 big endian encoding
 CUTF32UTF-32 encoding
 CUTF32LEUTF-32 little endian enocoding
 CUTF32BEUTF-32 big endian encoding
 CASCIIASCII encoding
 CAutoUTFDynamically select encoding according to stream's runtime-specified UTF encoding type
 CTranscoderEncoding conversion
 CTranscoder< Encoding, Encoding >Specialization of Transcoder with same source and target encoding
 CParseResultResult of parsing (wraps ParseErrorCode)
 CFileReadStreamFile byte stream for input using fread()
 CFileWriteStreamWrapper of C file stream for output using fwrite()
 CGenericStringStreamRead-only string stream
 CGenericInsituStringStreamA read-write string stream
 CGenericStringBufferRepresents an in-memory output stream
 CGenericMemoryBufferRepresents an in-memory output byte stream
 CBaseReaderHandlerDefault implementation of Handler
 CGenericReaderSAX-style JSON parser. Use Reader for UTF8 encoding and default allocator
 CWriterJSON writer
 CLevelInformation for each nested level
 CPrettyWriterWriter with indentation and spacing
 CGenericPointerRepresents a JSON Pointer. Use Pointer for UTF8 encoding and default allocator
 CTokenA token is the basic units of internal representation
 CIGenericRemoteSchemaDocumentProvider
 CGenericSchemaDocumentJSON schema document
 CGenericSchemaValidatorJSON Schema Validator
 CBasicIStreamWrapperWrapper of std::basic_istream into RapidJSON's Stream concept
 CMemoryStreamRepresents an in-memory input byte stream
 CBasicOStreamWrapperWrapper of std::basic_ostream into RapidJSON's Stream concept
 CSchemaValidatingReaderA helper class for parsing with validation
 CStreamTraitsProvides additional information for stream
 CGenericStreamWrapperA Stream Wrapper
 CStreamTraits< GenericStringStream< Encoding > >
 CStreamTraits< GenericInsituStringStream< Encoding > >
 CAllocatorConcept for allocating, resizing and freeing memory block
 CEncodingConcept for encoding of Unicode characters
 CHandlerConcept for receiving events from GenericReader upon parsing. The functions return true if no error occurs. If they return false, the event publisher should terminate the process
 CStreamConcept for reading and writing characters