sl@0
|
1 |
// Copyright David Abrahams 2005. Distributed under the Boost
|
sl@0
|
2 |
// Software License, Version 1.0. (See accompanying
|
sl@0
|
3 |
// file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
|
sl@0
|
4 |
#ifndef BOOST_PARAMETER_MATCH_DWA2005714_HPP
|
sl@0
|
5 |
# define BOOST_PARAMETER_MATCH_DWA2005714_HPP
|
sl@0
|
6 |
|
sl@0
|
7 |
# include <boost/detail/workaround.hpp>
|
sl@0
|
8 |
# include <boost/preprocessor/seq/enum.hpp>
|
sl@0
|
9 |
|
sl@0
|
10 |
# if BOOST_WORKAROUND(__MWERKS__, <= 0x3003)
|
sl@0
|
11 |
// Temporary version of BOOST_PP_SEQ_ENUM until Paul M. integrates the workaround.
|
sl@0
|
12 |
# define BOOST_PARAMETER_SEQ_ENUM_I(size,seq) BOOST_PP_CAT(BOOST_PP_SEQ_ENUM_, size) seq
|
sl@0
|
13 |
# define BOOST_PARAMETER_SEQ_ENUM(seq) BOOST_PARAMETER_SEQ_ENUM_I(BOOST_PP_SEQ_SIZE(seq), seq)
|
sl@0
|
14 |
# else
|
sl@0
|
15 |
# define BOOST_PARAMETER_SEQ_ENUM(seq) BOOST_PP_SEQ_ENUM(seq)
|
sl@0
|
16 |
# endif
|
sl@0
|
17 |
|
sl@0
|
18 |
# if BOOST_WORKAROUND(__BORLANDC__, BOOST_TESTED_AT(0x564))
|
sl@0
|
19 |
|
sl@0
|
20 |
# include <boost/parameter/config.hpp>
|
sl@0
|
21 |
# include <boost/parameter/aux_/void.hpp>
|
sl@0
|
22 |
# include <boost/preprocessor/arithmetic/sub.hpp>
|
sl@0
|
23 |
# include <boost/preprocessor/facilities/intercept.hpp>
|
sl@0
|
24 |
# include <boost/preprocessor/repetition/enum_trailing_params.hpp>
|
sl@0
|
25 |
|
sl@0
|
26 |
# define BOOST_PARAMETER_MATCH_DEFAULTS(ArgTypes) \
|
sl@0
|
27 |
BOOST_PP_ENUM_TRAILING_PARAMS( \
|
sl@0
|
28 |
BOOST_PP_SUB( \
|
sl@0
|
29 |
BOOST_PARAMETER_MAX_ARITY \
|
sl@0
|
30 |
, BOOST_PP_SEQ_SIZE(ArgTypes) \
|
sl@0
|
31 |
) \
|
sl@0
|
32 |
, ::boost::parameter::void_ BOOST_PP_INTERCEPT \
|
sl@0
|
33 |
)
|
sl@0
|
34 |
|
sl@0
|
35 |
# else
|
sl@0
|
36 |
|
sl@0
|
37 |
# define BOOST_PARAMETER_MATCH_DEFAULTS(ArgTypes)
|
sl@0
|
38 |
|
sl@0
|
39 |
# endif
|
sl@0
|
40 |
|
sl@0
|
41 |
//
|
sl@0
|
42 |
// Generates, e.g.
|
sl@0
|
43 |
//
|
sl@0
|
44 |
// typename dfs_params::match<A1,A2>::type name = dfs_params()
|
sl@0
|
45 |
//
|
sl@0
|
46 |
// with workarounds for Borland compatibility.
|
sl@0
|
47 |
//
|
sl@0
|
48 |
|
sl@0
|
49 |
# define BOOST_PARAMETER_MATCH(ParameterSpec, ArgTypes, name) \
|
sl@0
|
50 |
typename ParameterSpec ::match< \
|
sl@0
|
51 |
BOOST_PARAMETER_SEQ_ENUM(ArgTypes) \
|
sl@0
|
52 |
BOOST_PARAMETER_MATCH_DEFAULTS(ArgTypes) \
|
sl@0
|
53 |
>::type name = ParameterSpec ()
|
sl@0
|
54 |
|
sl@0
|
55 |
#endif // BOOST_PARAMETER_MATCH_DWA2005714_HPP
|