- reorganized repository to match standard layout

This commit is contained in:
Baptiste Lepilleur
2007-03-15 22:11:38 +00:00
parent d3a114c906
commit 4cd8bae331
103 changed files with 7722 additions and 0 deletions

31
include/json/forwards.h Normal file
View File

@@ -0,0 +1,31 @@
#ifndef JSON_FORWARDS_H_INCLUDED
# define JSON_FORWARDS_H_INCLUDED
# include "config.h"
namespace Json {
class FastWriter;
class Reader;
class StyledWriter;
// value.h
class StaticString;
class Path;
class PathArgument;
class Value;
class ValueIteratorBase;
class ValueIterator;
class ValueConstIterator;
#ifdef JSON_VALUE_USE_INTERNAL_MAP
class ValueAllocator;
class ValueMapAllocator;
class ValueInternalLink;
class ValueInternalArray;
class ValueInternalMap;
#endif // #ifdef JSON_VALUE_USE_INTERNAL_MAP
} // namespace Json
#endif // JSON_FORWARDS_H_INCLUDED