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_BINDING_DWA200558_HPP
|
sl@0
|
5 |
# define BOOST_PARAMETER_BINDING_DWA200558_HPP
|
sl@0
|
6 |
|
sl@0
|
7 |
# include <boost/mpl/apply.hpp>
|
sl@0
|
8 |
# include <boost/mpl/assert.hpp>
|
sl@0
|
9 |
# include <boost/mpl/and.hpp>
|
sl@0
|
10 |
# include <boost/parameter/aux_/result_of0.hpp>
|
sl@0
|
11 |
# include <boost/parameter/aux_/void.hpp>
|
sl@0
|
12 |
# include <boost/type_traits/is_same.hpp>
|
sl@0
|
13 |
|
sl@0
|
14 |
# if BOOST_WORKAROUND(BOOST_MSVC, < 1300)
|
sl@0
|
15 |
# include <boost/mpl/eval_if.hpp>
|
sl@0
|
16 |
# endif
|
sl@0
|
17 |
|
sl@0
|
18 |
namespace boost { namespace parameter {
|
sl@0
|
19 |
|
sl@0
|
20 |
// A metafunction that, given an argument pack, returns the type of
|
sl@0
|
21 |
// the parameter identified by the given keyword. If no such
|
sl@0
|
22 |
// parameter has been specified, returns Default
|
sl@0
|
23 |
|
sl@0
|
24 |
# if BOOST_WORKAROUND(BOOST_MSVC, <= 1300) \
|
sl@0
|
25 |
|| BOOST_WORKAROUND(__BORLANDC__, BOOST_TESTED_AT(0x564))
|
sl@0
|
26 |
template <class Parameters, class Keyword, class Default>
|
sl@0
|
27 |
struct binding0
|
sl@0
|
28 |
{
|
sl@0
|
29 |
typedef typename mpl::apply_wrap3<
|
sl@0
|
30 |
typename Parameters::binding,Keyword,Default,mpl::true_
|
sl@0
|
31 |
>::type type;
|
sl@0
|
32 |
|
sl@0
|
33 |
BOOST_MPL_ASSERT_NOT((
|
sl@0
|
34 |
mpl::and_<
|
sl@0
|
35 |
is_same<Default, void_>
|
sl@0
|
36 |
, is_same<type, void_>
|
sl@0
|
37 |
>
|
sl@0
|
38 |
));
|
sl@0
|
39 |
};
|
sl@0
|
40 |
# endif
|
sl@0
|
41 |
|
sl@0
|
42 |
template <class Parameters, class Keyword, class Default = void_>
|
sl@0
|
43 |
# if !BOOST_WORKAROUND(BOOST_MSVC, < 1300)
|
sl@0
|
44 |
struct binding
|
sl@0
|
45 |
# else
|
sl@0
|
46 |
struct binding_eti
|
sl@0
|
47 |
# endif
|
sl@0
|
48 |
{
|
sl@0
|
49 |
# if BOOST_WORKAROUND(BOOST_MSVC, <= 1300) \
|
sl@0
|
50 |
|| BOOST_WORKAROUND(__BORLANDC__, BOOST_TESTED_AT(0x564))
|
sl@0
|
51 |
typedef typename mpl::eval_if<
|
sl@0
|
52 |
mpl::is_placeholder<Parameters>
|
sl@0
|
53 |
, mpl::identity<int>
|
sl@0
|
54 |
, binding0<Parameters,Keyword,Default>
|
sl@0
|
55 |
>::type type;
|
sl@0
|
56 |
# else
|
sl@0
|
57 |
typedef typename mpl::apply_wrap3<
|
sl@0
|
58 |
typename Parameters::binding,Keyword,Default,mpl::true_
|
sl@0
|
59 |
>::type type;
|
sl@0
|
60 |
|
sl@0
|
61 |
BOOST_MPL_ASSERT_NOT((
|
sl@0
|
62 |
mpl::and_<
|
sl@0
|
63 |
is_same<Default, void_>
|
sl@0
|
64 |
, is_same<type, void_>
|
sl@0
|
65 |
>
|
sl@0
|
66 |
));
|
sl@0
|
67 |
# endif
|
sl@0
|
68 |
|
sl@0
|
69 |
# if !BOOST_WORKAROUND(BOOST_MSVC, < 1300)
|
sl@0
|
70 |
BOOST_MPL_AUX_LAMBDA_SUPPORT(3,binding,(Parameters,Keyword,Default))
|
sl@0
|
71 |
# endif
|
sl@0
|
72 |
};
|
sl@0
|
73 |
|
sl@0
|
74 |
# if BOOST_WORKAROUND(BOOST_MSVC, < 1300)
|
sl@0
|
75 |
template <class Parameters, class Keyword, class Default = void_>
|
sl@0
|
76 |
struct binding
|
sl@0
|
77 |
{
|
sl@0
|
78 |
typedef typename mpl::eval_if<
|
sl@0
|
79 |
is_same<Parameters, int>
|
sl@0
|
80 |
, mpl::identity<int>
|
sl@0
|
81 |
, binding_eti<Parameters, Keyword, Default>
|
sl@0
|
82 |
>::type type;
|
sl@0
|
83 |
|
sl@0
|
84 |
BOOST_MPL_AUX_LAMBDA_SUPPORT(3,binding,(Parameters,Keyword,Default))
|
sl@0
|
85 |
};
|
sl@0
|
86 |
# endif
|
sl@0
|
87 |
|
sl@0
|
88 |
// A metafunction that, given an argument pack, returns the type of
|
sl@0
|
89 |
// the parameter identified by the given keyword. If no such
|
sl@0
|
90 |
// parameter has been specified, returns the type returned by invoking
|
sl@0
|
91 |
// DefaultFn
|
sl@0
|
92 |
template <class Parameters, class Keyword, class DefaultFn>
|
sl@0
|
93 |
struct lazy_binding
|
sl@0
|
94 |
{
|
sl@0
|
95 |
typedef typename mpl::apply_wrap3<
|
sl@0
|
96 |
typename Parameters::binding
|
sl@0
|
97 |
, Keyword
|
sl@0
|
98 |
, typename aux::result_of0<DefaultFn>::type
|
sl@0
|
99 |
, mpl::true_
|
sl@0
|
100 |
>::type type;
|
sl@0
|
101 |
};
|
sl@0
|
102 |
|
sl@0
|
103 |
|
sl@0
|
104 |
}} // namespace boost::parameter
|
sl@0
|
105 |
|
sl@0
|
106 |
#endif // BOOST_PARAMETER_BINDING_DWA200558_HPP
|