Attempt to represent the S^2->S^3 header reorganisation as a series of "hg rename" operations
1 #ifndef POINTEE_DWA200415_HPP
2 # define POINTEE_DWA200415_HPP
5 // Copyright David Abrahams 2004. Use, modification and distribution is
6 // subject to the Boost Software License, Version 1.0. (See accompanying
7 // file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
9 // typename pointee<P>::type provides the pointee type of P.
11 // For example, it is T for T* and X for shared_ptr<X>.
13 // http://www.boost.org/libs/iterator/doc/pointee.html
16 # include <boost/detail/is_incrementable.hpp>
17 # include <boost/iterator/iterator_traits.hpp>
18 # include <boost/type_traits/add_const.hpp>
19 # include <boost/type_traits/remove_cv.hpp>
20 # include <boost/mpl/if.hpp>
21 # include <boost/mpl/eval_if.hpp>
28 struct smart_ptr_pointee
30 typedef typename P::element_type type;
33 template <class Iterator>
34 struct iterator_pointee
36 typedef typename iterator_traits<Iterator>::value_type value_type;
41 static char test(T const&);
43 static char (& test(value_type&) )[2];
48 BOOST_STATIC_CONSTANT(bool, is_constant = sizeof(impl::test(*impl::x)) == 1);
50 typedef typename mpl::if_c<
51 # if BOOST_WORKAROUND(__BORLANDC__, BOOST_TESTED_AT(0x551))
52 ::boost::detail::iterator_pointee<Iterator>::is_constant
56 , typename add_const<value_type>::type
65 detail::is_incrementable<P>
66 , detail::iterator_pointee<P>
67 , detail::smart_ptr_pointee<P>
74 #endif // POINTEE_DWA200415_HPP