2007-06-13 15:51:04 +00:00
|
|
|
#ifndef JSON_FORWARDS_H_INCLUDED
|
|
|
|
# define JSON_FORWARDS_H_INCLUDED
|
|
|
|
|
|
|
|
# include "config.h"
|
|
|
|
|
|
|
|
namespace Json {
|
|
|
|
|
2010-02-21 14:08:17 +00:00
|
|
|
// writer.h
|
2007-06-13 15:51:04 +00:00
|
|
|
class FastWriter;
|
|
|
|
class StyledWriter;
|
|
|
|
|
2010-02-21 14:08:17 +00:00
|
|
|
// reader.h
|
|
|
|
class Reader;
|
|
|
|
|
2009-11-18 21:38:54 +00:00
|
|
|
// features.h
|
|
|
|
class Features;
|
|
|
|
|
2007-06-13 15:51:04 +00:00
|
|
|
// value.h
|
2010-04-19 07:37:41 +00:00
|
|
|
typedef unsigned int ArrayIndex;
|
2007-06-13 15:51:04 +00: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
|