CMS 3D CMS Logo

forwards.h
Go to the documentation of this file.
1 #ifndef JSON_FORWARDS_H_INCLUDED
2 #define JSON_FORWARDS_H_INCLUDED
3 
4 #include "config.h"
5 
6 namespace Json {
7 
8  // writer.h
9  class FastWriter;
10  class StyledWriter;
11 
12  // reader.h
13  class Reader;
14 
15  // features.h
16  class Features;
17 
18  // value.h
19  typedef int Int;
20  typedef unsigned int UInt;
21  class StaticString;
22  class Path;
23  class PathArgument;
24  class Value;
25  class ValueIteratorBase;
26  class ValueIterator;
27  class ValueConstIterator;
28 #ifdef JSON_VALUE_USE_INTERNAL_MAP
29  class ValueAllocator;
30  class ValueMapAllocator;
31  class ValueInternalLink;
32  class ValueInternalArray;
33  class ValueInternalMap;
34 #endif // #ifdef JSON_VALUE_USE_INTERNAL_MAP
35 
36 } // namespace Json
37 
38 #endif // JSON_FORWARDS_H_INCLUDED
unsigned int UInt
Definition: forwards.h:20
Experimental and untested: represents an element of the "path" to access a node.
Definition: value.h:411
Lightweight wrapper to tag static string.
Definition: value.h:60
Represents a JSON value.
Definition: value.h:99
Configuration passed to reader and writer. This configuration object can be used to force the Reader ...
Definition: features.h:12
JSON (JavaScript Object Notation).
base class for Value iterators.
Definition: value.h:798
int Int
Definition: forwards.h:16
Experimental do not use: Allocator to customize member name and string value memory management done b...
Definition: value.h:473
Iterator for object and array value.
Definition: value.h:908
Experimental and untested: represents a "path" to access a node.
Definition: value.h:438
const iterator for object and array value.
Definition: value.h:857