// Copyright David Abrahams, Daniel Wallin 2003. Use, modification and // distribution is subject to the Boost Software License, Version 1.0. // (See accompanying file LICENSE_1_0.txt or copy at // http://www.boost.org/LICENSE_1_0.txt) #ifndef BOOST_PARAMETER_MACROS_050412_HPP #define BOOST_PARAMETER_MACROS_050412_HPP #include #include #include #include #include #include #include #include #include #include #define BOOST_PARAMETER_FUN_TEMPLATE_HEAD1(n) \ template #define BOOST_PARAMETER_FUN_TEMPLATE_HEAD0(n) #if ! defined(BOOST_NO_SFINAE) && ! BOOST_WORKAROUND(__BORLANDC__, BOOST_TESTED_AT(0x592)) # define BOOST_PARAMETER_MATCH_TYPE(n, param) \ BOOST_PP_EXPR_IF(n, typename) param::match \ < \ BOOST_PP_ENUM_PARAMS(n, T) \ >::type #else # define BOOST_PARAMETER_MATCH_TYPE(n, param) param #endif #define BOOST_PARAMETER_FUN_DECL(z, n, params) \ \ BOOST_PP_CAT(BOOST_PARAMETER_FUN_TEMPLATE_HEAD, BOOST_PP_BOOL(n))(n) \ \ BOOST_PP_TUPLE_ELEM(3, 0, params) \ BOOST_PP_TUPLE_ELEM(3, 1, params)( \ BOOST_PP_ENUM_BINARY_PARAMS(n, T, const& p) \ BOOST_PP_COMMA_IF(n) \ BOOST_PARAMETER_MATCH_TYPE(n,BOOST_PP_TUPLE_ELEM(3, 2, params)) \ kw = BOOST_PP_TUPLE_ELEM(3, 2, params)() \ ) \ { \ return BOOST_PP_CAT(BOOST_PP_TUPLE_ELEM(3, 1, params), _with_named_params)( \ kw(BOOST_PP_ENUM_PARAMS(n, p)) \ ); \ } // Generates: // // template // ret name ## _with_named_params(Params const&); // // template // ret name(T0 const& p0, typename parameters::match::type kw = parameters()) // { // return name ## _with_named_params(kw(p0)); // } // // template // ret name(T0 const& p0, ..., TN const& PN // , typename parameters::match::type kw = parameters()) // { // return name ## _with_named_params(kw(p0, ..., pN)); // } // // template // ret name ## _with_named_params(Params const&) // // lo and hi determines the min and max arity of the generated functions. #define BOOST_PARAMETER_FUN(ret, name, lo, hi, parameters) \ \ template \ ret BOOST_PP_CAT(name, _with_named_params)(Params const& p); \ \ BOOST_PP_REPEAT_FROM_TO( \ lo, BOOST_PP_INC(hi), BOOST_PARAMETER_FUN_DECL, (ret, name, parameters)) \ \ template \ ret BOOST_PP_CAT(name, _with_named_params)(Params const& p) #define BOOST_PARAMETER_MEMFUN(ret, name, lo, hi, parameters) \ \ BOOST_PP_REPEAT_FROM_TO( \ lo, BOOST_PP_INC(hi), BOOST_PARAMETER_FUN_DECL, (ret, name, parameters)) \ \ template \ ret BOOST_PP_CAT(name, _with_named_params)(Params const& p) #endif // BOOST_PARAMETER_MACROS_050412_HPP