- reorganized repository to match standard layout
diff --git a/include/json/forwards.h b/include/json/forwards.h
new file mode 100644
index 0000000..704d6e4
--- /dev/null
+++ b/include/json/forwards.h
@@ -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