fwd.h
1 // Tencent is pleased to support the open source community by making RapidJSON available.
2 //
3 // Copyright (C) 2015 THL A29 Limited, a Tencent company, and Milo Yip. All rights reserved.
4 //
5 // Licensed under the MIT License (the "License"); you may not use this file except
6 // in compliance with the License. You may obtain a copy of the License at
7 //
8 // http://opensource.org/licenses/MIT
9 //
10 // Unless required by applicable law or agreed to in writing, software distributed
11 // under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR
12 // CONDITIONS OF ANY KIND, either express or implied. See the License for the
13 // specific language governing permissions and limitations under the License.
14 
15 #ifndef RAPIDJSON_FWD_H_
16 #define RAPIDJSON_FWD_H_
17 
18 #include "rapidjson.h"
19 
20 RAPIDJSON_NAMESPACE_BEGIN
21 
22 // encodings.h
23 
24 template<typename CharType> struct UTF8;
25 template<typename CharType> struct UTF16;
26 template<typename CharType> struct UTF16BE;
27 template<typename CharType> struct UTF16LE;
28 template<typename CharType> struct UTF32;
29 template<typename CharType> struct UTF32BE;
30 template<typename CharType> struct UTF32LE;
31 template<typename CharType> struct ASCII;
32 template<typename CharType> struct AutoUTF;
33 
34 template<typename SourceEncoding, typename TargetEncoding>
35 struct Transcoder;
36 
37 // allocators.h
38 
39 class CrtAllocator;
40 
41 template <typename BaseAllocator>
42 class MemoryPoolAllocator;
43 
44 // stream.h
45 
46 template <typename Encoding>
48 
50 
51 template <typename Encoding>
53 
55 
56 // stringbuffer.h
57 
58 template <typename Encoding, typename Allocator>
60 
62 
63 // filereadstream.h
64 
65 class FileReadStream;
66 
67 // filewritestream.h
68 
69 class FileWriteStream;
70 
71 // memorybuffer.h
72 
73 template <typename Allocator>
75 
77 
78 // memorystream.h
79 
80 struct MemoryStream;
81 
82 // reader.h
83 
84 template<typename Encoding, typename Derived>
86 
87 template <typename SourceEncoding, typename TargetEncoding, typename StackAllocator>
89 
91 
92 // writer.h
93 
94 template<typename OutputStream, typename SourceEncoding, typename TargetEncoding, typename StackAllocator, unsigned writeFlags>
95 class Writer;
96 
97 // prettywriter.h
98 
99 template<typename OutputStream, typename SourceEncoding, typename TargetEncoding, typename StackAllocator, unsigned writeFlags>
101 
102 // document.h
103 
104 template <typename Encoding, typename Allocator>
105 struct GenericMember;
106 
107 template <bool Const, typename Encoding, typename Allocator>
109 
110 template<typename CharType>
111 struct GenericStringRef;
112 
113 template <typename Encoding, typename Allocator>
114 class GenericValue;
115 
117 
118 template <typename Encoding, typename Allocator, typename StackAllocator>
119 class GenericDocument;
120 
122 
123 // pointer.h
124 
125 template <typename ValueType, typename Allocator>
127 
129 
130 // schema.h
131 
132 template <typename SchemaDocumentType>
134 
135 template <typename ValueT, typename Allocator>
137 
140 
141 template <
142  typename SchemaDocumentType,
143  typename OutputHandler,
144  typename StateAllocator>
146 
148 
149 RAPIDJSON_NAMESPACE_END
150 
151 #endif // RAPIDJSON_RAPIDJSONFWD_H_
rapidjson::GenericValue
Represents a JSON value. Use Value for UTF8 encoding and default allocator.
Definition: document.h:59
rapidjson::GenericInsituStringStream
A read-write string stream.
Definition: fwd.h:52
rapidjson::GenericMemoryBuffer
Represents an in-memory output byte stream.
Definition: fwd.h:74
rapidjson::IGenericRemoteSchemaDocumentProvider
Definition: fwd.h:133
rapidjson.h
common definitions and configuration
rapidjson::GenericMemberIterator
(Constant) member iterator for a JSON object value
Definition: document.h:101
rapidjson::CrtAllocator
C-runtime library allocator.
Definition: allocators.h:62
rapidjson::MemoryStream
Represents an in-memory input byte stream.
Definition: memorystream.h:40
rapidjson::GenericStringBuffer
Represents an in-memory output stream.
Definition: fwd.h:59
rapidjson::GenericStringStream
Read-only string stream.
Definition: fwd.h:47
rapidjson::GenericMember
Name-value pair in a JSON object value.
Definition: document.h:71
rapidjson::FileWriteStream
Wrapper of C file stream for input using fread().
Definition: filewritestream.h:32
rapidjson::FileReadStream
File byte stream for input using fread().
Definition: filereadstream.h:34
rapidjson::PrettyWriter
Writer with indentation and spacing.
Definition: fwd.h:100
rapidjson::GenericReader
SAX-style JSON parser. Use Reader for UTF8 encoding and default allocator.
Definition: fwd.h:88
rapidjson::Value
GenericValue< UTF8<> > Value
GenericValue with UTF8 encoding.
Definition: document.h:2010
rapidjson::GenericStringRef
Reference to a constant string (not taking a copy)
Definition: document.h:249
rapidjson::MemoryPoolAllocator
Default memory allocator used by the parser and DOM.
Definition: allocators.h:102
rapidjson::GenericPointer
Represents a JSON Pointer. Use Pointer for UTF8 encoding and default allocator.
Definition: fwd.h:126
rapidjson::GenericDocument
A document for parsing JSON text as DOM.
Definition: document.h:62
rapidjson::BaseReaderHandler
Default implementation of Handler.
Definition: fwd.h:85
rapidjson::Writer
JSON writer.
Definition: fwd.h:95
rapidjson::UTF8
UTF-8 encoding.
Definition: encodings.h:96
rapidjson::Document
GenericDocument< UTF8<> > Document
GenericDocument with UTF8 encoding.
Definition: document.h:2402
rapidjson::GenericSchemaDocument
JSON schema document.
Definition: fwd.h:136
rapidjson::GenericSchemaValidator
JSON Schema Validator.
Definition: fwd.h:145