Path: blob/master/thirdparty/openxr/src/external/jsoncpp/include/json/forwards.h
9913 views
// Copyright 2007-2010 Baptiste Lepilleur and The JsonCpp Authors1// Distributed under MIT license, or public domain if desired and2// recognized in your jurisdiction.3// See file LICENSE for detail or copy at http://jsoncpp.sourceforge.net/LICENSE45#ifndef JSON_FORWARDS_H_INCLUDED6#define JSON_FORWARDS_H_INCLUDED78#if !defined(JSON_IS_AMALGAMATION)9#include "config.h"10#endif // if !defined(JSON_IS_AMALGAMATION)1112namespace Json {1314// writer.h15class StreamWriter;16class StreamWriterBuilder;17class Writer;18class FastWriter;19class StyledWriter;20class StyledStreamWriter;2122// reader.h23class Reader;24class CharReader;25class CharReaderBuilder;2627// json_features.h28class Features;2930// value.h31using ArrayIndex = unsigned int;32class StaticString;33class Path;34class PathArgument;35class Value;36class ValueIteratorBase;37class ValueIterator;38class ValueConstIterator;3940} // namespace Json4142#endif // JSON_FORWARDS_H_INCLUDED434445