sl@0: // Boost.Function library sl@0: sl@0: // Copyright Douglas Gregor 2001-2003. Use, modification and sl@0: // distribution is subject to the Boost Software License, Version sl@0: // 1.0. (See accompanying file LICENSE_1_0.txt or copy at sl@0: // http://www.boost.org/LICENSE_1_0.txt) sl@0: sl@0: // For more information, see http://www.boost.org/libs/function sl@0: sl@0: // William Kempf, Jesse Jones and Karl Nelson were all very helpful in the sl@0: // design of this library. sl@0: sl@0: #include sl@0: #include sl@0: sl@0: #ifndef BOOST_FUNCTION_MAX_ARGS sl@0: # define BOOST_FUNCTION_MAX_ARGS 10 sl@0: #endif // BOOST_FUNCTION_MAX_ARGS sl@0: sl@0: // Include the prologue here so that the use of file-level iteration sl@0: // in anything that may be included by function_template.hpp doesn't break sl@0: #include sl@0: sl@0: // Visual Age C++ doesn't handle the file iteration well sl@0: #if BOOST_WORKAROUND(__IBMCPP__, >= 500) sl@0: # if BOOST_FUNCTION_MAX_ARGS >= 0 sl@0: # include sl@0: # endif sl@0: # if BOOST_FUNCTION_MAX_ARGS >= 1 sl@0: # include sl@0: # endif sl@0: # if BOOST_FUNCTION_MAX_ARGS >= 2 sl@0: # include sl@0: # endif sl@0: # if BOOST_FUNCTION_MAX_ARGS >= 3 sl@0: # include sl@0: # endif sl@0: # if BOOST_FUNCTION_MAX_ARGS >= 4 sl@0: # include sl@0: # endif sl@0: # if BOOST_FUNCTION_MAX_ARGS >= 5 sl@0: # include sl@0: # endif sl@0: # if BOOST_FUNCTION_MAX_ARGS >= 6 sl@0: # include sl@0: # endif sl@0: # if BOOST_FUNCTION_MAX_ARGS >= 7 sl@0: # include sl@0: # endif sl@0: # if BOOST_FUNCTION_MAX_ARGS >= 8 sl@0: # include sl@0: # endif sl@0: # if BOOST_FUNCTION_MAX_ARGS >= 9 sl@0: # include sl@0: # endif sl@0: # if BOOST_FUNCTION_MAX_ARGS >= 10 sl@0: # include sl@0: # endif sl@0: #else sl@0: // What is the '3' for? sl@0: # define BOOST_PP_ITERATION_PARAMS_1 (3,(0,BOOST_FUNCTION_MAX_ARGS,)) sl@0: # include BOOST_PP_ITERATE() sl@0: # undef BOOST_PP_ITERATION_PARAMS_1 sl@0: #endif