json test

Committer:
tgw
Date:
Fri Jan 26 06:05:31 2018 +0000
Revision:
0:2ee762ea11b3
json

Who changed what in which revision?

UserRevisionLine numberNew contents of line
tgw 0:2ee762ea11b3 1 // Copyright 2007-2010 Baptiste Lepilleur and The JsonCpp Authors
tgw 0:2ee762ea11b3 2 // Distributed under MIT license, or public domain if desired and
tgw 0:2ee762ea11b3 3 // recognized in your jurisdiction.
tgw 0:2ee762ea11b3 4 // See file LICENSE for detail or copy at http://jsoncpp.sourceforge.net/LICENSE
tgw 0:2ee762ea11b3 5
tgw 0:2ee762ea11b3 6 #ifndef JSON_FORWARDS_H_INCLUDED
tgw 0:2ee762ea11b3 7 #define JSON_FORWARDS_H_INCLUDED
tgw 0:2ee762ea11b3 8
tgw 0:2ee762ea11b3 9 #if !defined(JSON_IS_AMALGAMATION)
tgw 0:2ee762ea11b3 10 #include "config.h"
tgw 0:2ee762ea11b3 11 #endif // if !defined(JSON_IS_AMALGAMATION)
tgw 0:2ee762ea11b3 12
tgw 0:2ee762ea11b3 13 namespace Json {
tgw 0:2ee762ea11b3 14
tgw 0:2ee762ea11b3 15 // writer.h
tgw 0:2ee762ea11b3 16 class FastWriter;
tgw 0:2ee762ea11b3 17 class StyledWriter;
tgw 0:2ee762ea11b3 18
tgw 0:2ee762ea11b3 19 // reader.h
tgw 0:2ee762ea11b3 20 class Reader;
tgw 0:2ee762ea11b3 21
tgw 0:2ee762ea11b3 22 // features.h
tgw 0:2ee762ea11b3 23 class Features;
tgw 0:2ee762ea11b3 24
tgw 0:2ee762ea11b3 25 // value.h
tgw 0:2ee762ea11b3 26 typedef unsigned int ArrayIndex;
tgw 0:2ee762ea11b3 27 class StaticString;
tgw 0:2ee762ea11b3 28 class Path;
tgw 0:2ee762ea11b3 29 class PathArgument;
tgw 0:2ee762ea11b3 30 class Value;
tgw 0:2ee762ea11b3 31 class ValueIteratorBase;
tgw 0:2ee762ea11b3 32 class ValueIterator;
tgw 0:2ee762ea11b3 33 class ValueConstIterator;
tgw 0:2ee762ea11b3 34
tgw 0:2ee762ea11b3 35 } // namespace Json
tgw 0:2ee762ea11b3 36
tgw 0:2ee762ea11b3 37 #endif // JSON_FORWARDS_H_INCLUDED