os/ossrv/ossrv_pub/boost_apis/boost/pointee.hpp
author sl
Tue, 10 Jun 2014 14:32:02 +0200
changeset 1 260cb5ec6c19
permissions -rw-r--r--
Update contrib.
sl@0
     1
#ifndef POINTEE_DWA200415_HPP
sl@0
     2
# define POINTEE_DWA200415_HPP
sl@0
     3
sl@0
     4
//
sl@0
     5
// Copyright David Abrahams 2004. Use, modification and distribution is
sl@0
     6
// subject to the Boost Software License, Version 1.0. (See accompanying
sl@0
     7
// file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
sl@0
     8
//
sl@0
     9
// typename pointee<P>::type provides the pointee type of P.
sl@0
    10
//
sl@0
    11
// For example, it is T for T* and X for shared_ptr<X>.
sl@0
    12
//
sl@0
    13
// http://www.boost.org/libs/iterator/doc/pointee.html
sl@0
    14
//
sl@0
    15
sl@0
    16
# include <boost/detail/is_incrementable.hpp>
sl@0
    17
# include <boost/iterator/iterator_traits.hpp>
sl@0
    18
# include <boost/type_traits/add_const.hpp>
sl@0
    19
# include <boost/type_traits/remove_cv.hpp>
sl@0
    20
# include <boost/mpl/if.hpp>
sl@0
    21
# include <boost/mpl/eval_if.hpp>
sl@0
    22
sl@0
    23
namespace boost { 
sl@0
    24
sl@0
    25
namespace detail
sl@0
    26
{
sl@0
    27
  template <class P>
sl@0
    28
  struct smart_ptr_pointee
sl@0
    29
  {
sl@0
    30
      typedef typename P::element_type type;
sl@0
    31
  };
sl@0
    32
sl@0
    33
  template <class Iterator>
sl@0
    34
  struct iterator_pointee
sl@0
    35
  {
sl@0
    36
      typedef typename iterator_traits<Iterator>::value_type value_type;
sl@0
    37
      
sl@0
    38
      struct impl
sl@0
    39
      {
sl@0
    40
          template <class T>
sl@0
    41
          static char test(T const&);
sl@0
    42
          
sl@0
    43
          static char (& test(value_type&) )[2];
sl@0
    44
          
sl@0
    45
          static Iterator& x;
sl@0
    46
      };
sl@0
    47
      
sl@0
    48
      BOOST_STATIC_CONSTANT(bool, is_constant = sizeof(impl::test(*impl::x)) == 1);
sl@0
    49
      
sl@0
    50
      typedef typename mpl::if_c<
sl@0
    51
#  if BOOST_WORKAROUND(__BORLANDC__, BOOST_TESTED_AT(0x551))
sl@0
    52
          ::boost::detail::iterator_pointee<Iterator>::is_constant
sl@0
    53
#  else
sl@0
    54
          is_constant
sl@0
    55
#  endif 
sl@0
    56
        , typename add_const<value_type>::type
sl@0
    57
        , value_type
sl@0
    58
      >::type type;
sl@0
    59
  };
sl@0
    60
}
sl@0
    61
sl@0
    62
template <class P>
sl@0
    63
struct pointee
sl@0
    64
  : mpl::eval_if<
sl@0
    65
        detail::is_incrementable<P>
sl@0
    66
      , detail::iterator_pointee<P>
sl@0
    67
      , detail::smart_ptr_pointee<P>
sl@0
    68
    >
sl@0
    69
{
sl@0
    70
};
sl@0
    71
  
sl@0
    72
} // namespace boost
sl@0
    73
sl@0
    74
#endif // POINTEE_DWA200415_HPP