Drizzled Public API Documentation

forwards.h
00001 /*  vim:expandtab:shiftwidth=2:tabstop=2:smarttab:
00002  * 
00003  *  JSON Library, originally from http://jsoncpp.sourceforge.net/
00004  *
00005  *  Copyright (C) 2011 Stewart Smith
00006  *  All rights reserved.
00007  *
00008  *  Redistribution and use in source and binary forms, with or without
00009  *  modification, are permitted provided that the following conditions are
00010  *  met:
00011  *
00012  *      * Redistributions of source code must retain the above copyright
00013  *  notice, this list of conditions and the following disclaimer.
00014  *
00015  *      * Redistributions in binary form must reproduce the above
00016  *  copyright notice, this list of conditions and the following disclaimer
00017  *  in the documentation and/or other materials provided with the
00018  *  distribution.
00019  *
00020  *      * The names of its contributors may not be used to endorse or
00021  *  promote products derived from this software without specific prior
00022  *  written permission.
00023  *
00024  *  THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
00025  *  "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
00026  *  LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
00027  *  A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
00028  *  OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
00029  *  SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
00030  *  LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
00031  *  DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
00032  *  THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
00033  *  (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
00034  *  OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
00035  *
00036  */
00037 
00038 #pragma once
00039 #ifndef JSON_FORWARDS_H_INCLUDED
00040 # define JSON_FORWARDS_H_INCLUDED
00041 
00042 # include "config.h"
00043 
00044 namespace Json {
00045 
00046    // writer.h
00047    class FastWriter;
00048    class StyledWriter;
00049 
00050    // reader.h
00051    class Reader;
00052 
00053    // features.h
00054    class Features;
00055 
00056    // value.h
00057    typedef int Int;
00058    typedef unsigned int UInt;
00059    class StaticString;
00060    class Path;
00061    class PathArgument;
00062    class Value;
00063    class ValueIteratorBase;
00064    class ValueIterator;
00065    class ValueConstIterator;
00066 #ifdef JSON_VALUE_USE_INTERNAL_MAP
00067    class ValueAllocator;
00068    class ValueMapAllocator;
00069    class ValueInternalLink;
00070    class ValueInternalArray;
00071    class ValueInternalMap;
00072 #endif // #ifdef JSON_VALUE_USE_INTERNAL_MAP
00073 
00074 } // namespace Json
00075 
00076 
00077 #endif // JSON_FORWARDS_H_INCLUDED