RTBKit  0.9
Open-source framework to create real-time ad bidding systems.
soa/jsoncpp/forwards.h
00001 // Copyright 2007-2010 Baptiste Lepilleur
00002 // Distributed under MIT license, or public domain if desired and
00003 // recognized in your jurisdiction.
00004 // See file LICENSE for detail or copy at http://jsoncpp.sourceforge.net/LICENSE
00005 #ifndef JSON_FORWARDS_H_INCLUDED
00006 # define JSON_FORWARDS_H_INCLUDED
00007 
00008 # include "config.h"
00009 
00010 namespace Json {
00011 
00012    // writer.h
00013    class FastWriter;
00014    class StyledWriter;
00015 
00016    // reader.h
00017    class Reader;
00018 
00019    // features.h
00020    class Features;
00021 
00022    // value.h
00023    typedef long long int Int;
00024    typedef unsigned long long int UInt;
00025    class StaticString;
00026    class Path;
00027    class PathArgument;
00028    class Value;
00029    class ValueIteratorBase;
00030    class ValueIterator;
00031    class ValueConstIterator;
00032 #ifdef JSON_VALUE_USE_INTERNAL_MAP
00033    class ValueAllocator;
00034    class ValueMapAllocator;
00035    class ValueInternalLink;
00036    class ValueInternalArray;
00037    class ValueInternalMap;
00038 #endif // #ifdef JSON_VALUE_USE_INTERNAL_MAP
00039 
00040 } // namespace Json
00041 
00042 
00043 #endif // JSON_FORWARDS_H_INCLUDED
 All Classes Namespaces Functions Variables Typedefs Enumerations Enumerator