os/ossrv/ossrv_pub/boost_apis/boost/function.hpp
author sl
Tue, 10 Jun 2014 14:32:02 +0200
changeset 1 260cb5ec6c19
permissions -rw-r--r--
Update contrib.
sl@0
     1
// Boost.Function library
sl@0
     2
sl@0
     3
//  Copyright Douglas Gregor 2001-2003. Use, modification and
sl@0
     4
//  distribution is subject to the Boost Software License, Version
sl@0
     5
//  1.0. (See accompanying file LICENSE_1_0.txt or copy at
sl@0
     6
//  http://www.boost.org/LICENSE_1_0.txt)
sl@0
     7
sl@0
     8
// For more information, see http://www.boost.org/libs/function
sl@0
     9
sl@0
    10
// William Kempf, Jesse Jones and Karl Nelson were all very helpful in the
sl@0
    11
// design of this library.
sl@0
    12
sl@0
    13
#include <boost/preprocessor/iterate.hpp>
sl@0
    14
#include <boost/detail/workaround.hpp>
sl@0
    15
sl@0
    16
#ifndef BOOST_FUNCTION_MAX_ARGS
sl@0
    17
#  define BOOST_FUNCTION_MAX_ARGS 10
sl@0
    18
#endif // BOOST_FUNCTION_MAX_ARGS
sl@0
    19
sl@0
    20
// Include the prologue here so that the use of file-level iteration
sl@0
    21
// in anything that may be included by function_template.hpp doesn't break
sl@0
    22
#include <boost/function/detail/prologue.hpp>
sl@0
    23
sl@0
    24
// Visual Age C++ doesn't handle the file iteration well
sl@0
    25
#if BOOST_WORKAROUND(__IBMCPP__, >= 500)
sl@0
    26
#  if BOOST_FUNCTION_MAX_ARGS >= 0
sl@0
    27
#    include <boost/function/function0.hpp>
sl@0
    28
#  endif
sl@0
    29
#  if BOOST_FUNCTION_MAX_ARGS >= 1
sl@0
    30
#    include <boost/function/function1.hpp>
sl@0
    31
#  endif
sl@0
    32
#  if BOOST_FUNCTION_MAX_ARGS >= 2
sl@0
    33
#    include <boost/function/function2.hpp>
sl@0
    34
#  endif
sl@0
    35
#  if BOOST_FUNCTION_MAX_ARGS >= 3
sl@0
    36
#    include <boost/function/function3.hpp>
sl@0
    37
#  endif
sl@0
    38
#  if BOOST_FUNCTION_MAX_ARGS >= 4
sl@0
    39
#    include <boost/function/function4.hpp>
sl@0
    40
#  endif
sl@0
    41
#  if BOOST_FUNCTION_MAX_ARGS >= 5
sl@0
    42
#    include <boost/function/function5.hpp>
sl@0
    43
#  endif
sl@0
    44
#  if BOOST_FUNCTION_MAX_ARGS >= 6
sl@0
    45
#    include <boost/function/function6.hpp>
sl@0
    46
#  endif
sl@0
    47
#  if BOOST_FUNCTION_MAX_ARGS >= 7
sl@0
    48
#    include <boost/function/function7.hpp>
sl@0
    49
#  endif
sl@0
    50
#  if BOOST_FUNCTION_MAX_ARGS >= 8
sl@0
    51
#    include <boost/function/function8.hpp>
sl@0
    52
#  endif
sl@0
    53
#  if BOOST_FUNCTION_MAX_ARGS >= 9
sl@0
    54
#    include <boost/function/function9.hpp>
sl@0
    55
#  endif
sl@0
    56
#  if BOOST_FUNCTION_MAX_ARGS >= 10
sl@0
    57
#    include <boost/function/function10.hpp>
sl@0
    58
#  endif
sl@0
    59
#else
sl@0
    60
// What is the '3' for?
sl@0
    61
#  define BOOST_PP_ITERATION_PARAMS_1 (3,(0,BOOST_FUNCTION_MAX_ARGS,<boost/function/detail/function_iterate.hpp>))
sl@0
    62
#  include BOOST_PP_ITERATE()
sl@0
    63
#  undef BOOST_PP_ITERATION_PARAMS_1
sl@0
    64
#endif