Update contrib.
1 // Copyright David Abrahams 2002.
2 // Distributed under the Boost Software License, Version 1.0. (See
3 // accompanying file LICENSE_1_0.txt or copy at
4 // http://www.boost.org/LICENSE_1_0.txt)
5 #ifndef BASES_DWA2002321_HPP
6 # define BASES_DWA2002321_HPP
8 # include <boost/python/detail/prefix.hpp>
9 # include <boost/type_traits/object_traits.hpp>
10 # include <boost/python/detail/type_list.hpp>
11 # include <boost/mpl/if.hpp>
12 # include <boost/mpl/bool.hpp>
13 # include <boost/preprocessor/enum_params_with_a_default.hpp>
14 # include <boost/preprocessor/enum_params.hpp>
16 namespace boost { namespace python {
18 # define BOOST_PYTHON_BASE_PARAMS BOOST_PP_ENUM_PARAMS_Z(1, BOOST_PYTHON_MAX_BASES, Base)
20 // A type list for specifying bases
21 template < BOOST_PP_ENUM_PARAMS_WITH_A_DEFAULT(BOOST_PYTHON_MAX_BASES, typename Base, mpl::void_) >
22 struct bases : detail::type_list< BOOST_PYTHON_BASE_PARAMS >::type
27 # ifndef BOOST_NO_TEMPLATE_PARTIAL_SPECIALIZATION
28 template <class T> struct specifies_bases
33 template < BOOST_PP_ENUM_PARAMS_Z(1, BOOST_PYTHON_MAX_BASES, class Base) >
34 struct specifies_bases< bases< BOOST_PYTHON_BASE_PARAMS > >
39 template < BOOST_PP_ENUM_PARAMS(BOOST_PYTHON_MAX_BASES, class Base) >
40 static char is_bases_helper(bases< BOOST_PYTHON_BASE_PARAMS > const&);
42 static char (& is_bases_helper(...) )[256];
45 struct specifies_bases
48 static typename add_reference<T>::type make();
49 BOOST_STATIC_CONSTANT(bool, non_ref = !is_reference<T>::value);
51 BOOST_STATIC_CONSTANT(bool, value = non_ref & (sizeof(is_bases_helper(make())) == 1));
52 typedef mpl::bool_<value> type;
55 template <class T, class Prev = bases<> >
65 # undef BOOST_PYTHON_BASE_PARAMS
66 }} // namespace boost::python
68 #endif // BASES_DWA2002321_HPP