Go to the documentation of this file.00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017 #ifndef BOOST_CONFIG_HPP
00018 #define BOOST_CONFIG_HPP
00019
00020
00021 #if !defined(BOOST_USER_CONFIG) && !defined(BOOST_NO_USER_CONFIG)
00022 # define BOOST_USER_CONFIG <boost/config/user.hpp>
00023 #endif
00024
00025 #ifdef BOOST_USER_CONFIG
00026 # include BOOST_USER_CONFIG
00027 #endif
00028
00029
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
00034 #ifdef BOOST_COMPILER_CONFIG
00035 # include BOOST_COMPILER_CONFIG
00036 #endif
00037
00038
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
00043 #ifdef BOOST_STDLIB_CONFIG
00044 # include BOOST_STDLIB_CONFIG
00045 #endif
00046
00047
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
00052 #ifdef BOOST_PLATFORM_CONFIG
00053 # include BOOST_PLATFORM_CONFIG
00054 #endif
00055
00056
00057 #include <boost/config/suffix.hpp>
00058
00059 #endif // BOOST_CONFIG_HPP
00060
00061
00062
00063
00064
00065
00066
00067
00068
00069
00070