Baptiste Lepilleur | 7469f1d | 2010-04-20 21:35:19 +0000 | [diff] [blame^] | 1 | // Copyright 2007-2010 Baptiste Lepilleur |
| 2 | // Distributed under MIT license, or public domain if desired and |
| 3 | // recognized in your jurisdiction. |
| 4 | // See file LICENSE for detail or copy at http://jsoncpp.sourceforge.net/LICENSE |
| 5 | |
Christopher Dunn | 6d135cb | 2007-06-13 15:51:04 +0000 | [diff] [blame] | 6 | #ifndef JSON_FORWARDS_H_INCLUDED |
| 7 | # define JSON_FORWARDS_H_INCLUDED |
| 8 | |
| 9 | # include "config.h" |
| 10 | |
| 11 | namespace Json { |
| 12 | |
Baptiste Lepilleur | 3a1b93b | 2010-02-21 14:08:17 +0000 | [diff] [blame] | 13 | // writer.h |
Christopher Dunn | 6d135cb | 2007-06-13 15:51:04 +0000 | [diff] [blame] | 14 | class FastWriter; |
Christopher Dunn | 6d135cb | 2007-06-13 15:51:04 +0000 | [diff] [blame] | 15 | class StyledWriter; |
| 16 | |
Baptiste Lepilleur | 3a1b93b | 2010-02-21 14:08:17 +0000 | [diff] [blame] | 17 | // reader.h |
| 18 | class Reader; |
| 19 | |
Baptiste Lepilleur | 8868147 | 2009-11-18 21:38:54 +0000 | [diff] [blame] | 20 | // features.h |
| 21 | class Features; |
| 22 | |
Christopher Dunn | 6d135cb | 2007-06-13 15:51:04 +0000 | [diff] [blame] | 23 | // value.h |
Baptiste Lepilleur | 201fb2c | 2010-04-19 07:37:41 +0000 | [diff] [blame] | 24 | typedef unsigned int ArrayIndex; |
Christopher Dunn | 6d135cb | 2007-06-13 15:51:04 +0000 | [diff] [blame] | 25 | class StaticString; |
| 26 | class Path; |
| 27 | class PathArgument; |
| 28 | class Value; |
| 29 | class ValueIteratorBase; |
| 30 | class ValueIterator; |
| 31 | class ValueConstIterator; |
| 32 | #ifdef JSON_VALUE_USE_INTERNAL_MAP |
Christopher Dunn | 6d135cb | 2007-06-13 15:51:04 +0000 | [diff] [blame] | 33 | class ValueMapAllocator; |
| 34 | class ValueInternalLink; |
| 35 | class ValueInternalArray; |
| 36 | class ValueInternalMap; |
| 37 | #endif // #ifdef JSON_VALUE_USE_INTERNAL_MAP |
| 38 | |
| 39 | } // namespace Json |
| 40 | |
| 41 | |
| 42 | #endif // JSON_FORWARDS_H_INCLUDED |