config.hpp
Go to the documentation of this file.
00001 //  Boost config.hpp configuration header file  ------------------------------//
00002 
00003 //  (C) Copyright John Maddock 2002. 
00004 //  Use, modification and distribution are subject to the 
00005 //  Boost Software License, Version 1.0. (See accompanying file 
00006 //  LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
00007 
00008 //  See http://www.boost.org/libs/config for most recent version.
00009 
00010 //  Boost config.hpp policy and rationale documentation has been moved to
00011 //  http://www.boost.org/libs/config
00012 //
00013 //  CAUTION: This file is intended to be completely stable -
00014 //           DO NOT MODIFY THIS FILE!
00015 //
00016 
00017 #ifndef BOOST_CONFIG_HPP
00018 #define BOOST_CONFIG_HPP
00019 
00020 // if we don't have a user config, then use the default location:
00021 #if !defined(BOOST_USER_CONFIG) && !defined(BOOST_NO_USER_CONFIG)
00022 #  define BOOST_USER_CONFIG <boost/config/user.hpp>
00023 #endif
00024 // include it first:
00025 #ifdef BOOST_USER_CONFIG
00026 #  include BOOST_USER_CONFIG
00027 #endif
00028 
00029 // if we don't have a compiler config set, try and find one:
00030 #if !defined(BOOST_COMPILER_CONFIG) && !defined(BOOST_NO_COMPILER_CONFIG) && !defined(BOOST_NO_CONFIG)
00031 #  include <boost/config/select_compiler_config.hpp>
00032 #endif
00033 // if we have a compiler config, include it now:
00034 #ifdef BOOST_COMPILER_CONFIG
00035 #  include BOOST_COMPILER_CONFIG
00036 #endif
00037 
00038 // if we don't have a std library config set, try and find one:
00039 #if !defined(BOOST_STDLIB_CONFIG) && !defined(BOOST_NO_STDLIB_CONFIG) && !defined(BOOST_NO_CONFIG)
00040 #  include <boost/config/select_stdlib_config.hpp>
00041 #endif
00042 // if we have a std library config, include it now:
00043 #ifdef BOOST_STDLIB_CONFIG
00044 #  include BOOST_STDLIB_CONFIG
00045 #endif
00046 
00047 // if we don't have a platform config set, try and find one:
00048 #if !defined(BOOST_PLATFORM_CONFIG) && !defined(BOOST_NO_PLATFORM_CONFIG) && !defined(BOOST_NO_CONFIG)
00049 #  include <boost/config/select_platform_config.hpp>
00050 #endif
00051 // if we have a platform config, include it now:
00052 #ifdef BOOST_PLATFORM_CONFIG
00053 #  include BOOST_PLATFORM_CONFIG
00054 #endif
00055 
00056 // get config suffix code:
00057 #include <boost/config/suffix.hpp>
00058 
00059 #endif  // BOOST_CONFIG_HPP
00060 
00061 
00062 
00063 
00064 
00065 
00066 
00067 
00068 
00069 
00070 


appl
Author(s): petercai
autogenerated on Tue Jan 7 2014 11:02:28