2007-06-13 17:51:04 +02:00
|
|
|
#ifndef JSON_FORWARDS_H_INCLUDED
|
|
|
|
# define JSON_FORWARDS_H_INCLUDED
|
|
|
|
|
|
|
|
# include "config.h"
|
|
|
|
|
|
|
|
namespace Json {
|
|
|
|
|
2010-02-21 15:08:17 +01:00
|
|
|
// writer.h
|
2007-06-13 17:51:04 +02:00
|
|
|
class FastWriter;
|
|
|
|
class StyledWriter;
|
|
|
|
|
2010-02-21 15:08:17 +01:00
|
|
|
// reader.h
|
|
|
|
class Reader;
|
|
|
|
|
2009-11-18 22:38:54 +01:00
|
|
|
// features.h
|
|
|
|
class Features;
|
|
|
|
|
2007-06-13 17:51:04 +02:00
|
|
|
// value.h
|
2010-04-19 09:37:41 +02:00
|
|
|
typedef unsigned int ArrayIndex;
|
2007-06-13 17:51:04 +02:00
|
|
|
class StaticString;
|
|
|
|
class Path;
|
|
|
|
class PathArgument;
|
|
|
|
class Value;
|
|
|
|
class ValueIteratorBase;
|
|
|
|
class ValueIterator;
|
|
|
|
class ValueConstIterator;
|
|
|
|
#ifdef JSON_VALUE_USE_INTERNAL_MAP
|
|
|
|
class ValueMapAllocator;
|
|
|
|
class ValueInternalLink;
|
|
|
|
class ValueInternalArray;
|
|
|
|
class ValueInternalMap;
|
|
|
|
#endif // #ifdef JSON_VALUE_USE_INTERNAL_MAP
|
|
|
|
|
|
|
|
} // namespace Json
|
|
|
|
|
|
|
|
|
|
|
|
#endif // JSON_FORWARDS_H_INCLUDED
|