2017-07-21 12:44:36 +02:00
|
|
|
// Copyright 2007-2010 Baptiste Lepilleur and The JsonCpp Authors
|
2010-04-20 23:35:19 +02:00
|
|
|
// Distributed under MIT license, or public domain if desired and
|
|
|
|
// recognized in your jurisdiction.
|
|
|
|
// See file LICENSE for detail or copy at http://jsoncpp.sourceforge.net/LICENSE
|
|
|
|
|
2007-06-13 17:51:04 +02:00
|
|
|
#ifndef JSON_FORWARDS_H_INCLUDED
|
2014-07-01 00:48:54 +02:00
|
|
|
#define JSON_FORWARDS_H_INCLUDED
|
2007-06-13 17:51:04 +02:00
|
|
|
|
2011-05-02 23:09:30 +02:00
|
|
|
#if !defined(JSON_IS_AMALGAMATION)
|
2014-07-01 00:48:54 +02:00
|
|
|
#include "config.h"
|
2011-05-02 23:09:30 +02:00
|
|
|
#endif // if !defined(JSON_IS_AMALGAMATION)
|
2007-06-13 17:51:04 +02:00
|
|
|
|
|
|
|
namespace Json {
|
|
|
|
|
2014-07-01 00:48:54 +02:00
|
|
|
// writer.h
|
2019-06-03 16:04:01 +02:00
|
|
|
class StreamWriter;
|
|
|
|
class StreamWriterBuilder;
|
|
|
|
class Writer;
|
2014-07-01 00:48:54 +02:00
|
|
|
class FastWriter;
|
|
|
|
class StyledWriter;
|
2019-06-03 16:04:01 +02:00
|
|
|
class StyledStreamWriter;
|
2014-07-01 00:48:54 +02:00
|
|
|
|
|
|
|
// reader.h
|
|
|
|
class Reader;
|
2019-06-03 16:04:01 +02:00
|
|
|
class CharReader;
|
|
|
|
class CharReaderBuilder;
|
2014-07-01 00:48:54 +02:00
|
|
|
|
2019-09-25 23:04:53 +02:00
|
|
|
// json_features.h
|
2014-07-01 00:48:54 +02:00
|
|
|
class Features;
|
|
|
|
|
|
|
|
// value.h
|
2019-12-04 02:08:45 +01:00
|
|
|
using ArrayIndex = unsigned int;
|
2014-07-01 00:48:54 +02:00
|
|
|
class StaticString;
|
|
|
|
class Path;
|
|
|
|
class PathArgument;
|
|
|
|
class Value;
|
|
|
|
class ValueIteratorBase;
|
|
|
|
class ValueIterator;
|
|
|
|
class ValueConstIterator;
|
2007-06-13 17:51:04 +02:00
|
|
|
|
|
|
|
} // namespace Json
|
|
|
|
|
|
|
|
#endif // JSON_FORWARDS_H_INCLUDED
|