os/ossrv/ossrv_pub/boost_apis/boost/indirect_reference.hpp
author sl
Tue, 10 Jun 2014 14:32:02 +0200
changeset 1 260cb5ec6c19
permissions -rw-r--r--
Update contrib.
sl@0
     1
#ifndef INDIRECT_REFERENCE_DWA200415_HPP
sl@0
     2
# define INDIRECT_REFERENCE_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 indirect_reference<P>::type provides the type of *p.
sl@0
    10
//
sl@0
    11
// http://www.boost.org/libs/iterator/doc/pointee.html
sl@0
    12
//
sl@0
    13
sl@0
    14
# include <boost/detail/is_incrementable.hpp>
sl@0
    15
# include <boost/iterator/iterator_traits.hpp>
sl@0
    16
# include <boost/type_traits/remove_cv.hpp>
sl@0
    17
# include <boost/mpl/eval_if.hpp>
sl@0
    18
# include <boost/pointee.hpp>
sl@0
    19
sl@0
    20
namespace boost { 
sl@0
    21
sl@0
    22
namespace detail
sl@0
    23
{
sl@0
    24
  template <class P>
sl@0
    25
  struct smart_ptr_reference
sl@0
    26
  {
sl@0
    27
      typedef typename boost::pointee<P>::type& type;
sl@0
    28
  };
sl@0
    29
}
sl@0
    30
sl@0
    31
template <class P>
sl@0
    32
struct indirect_reference
sl@0
    33
  : mpl::eval_if<
sl@0
    34
        detail::is_incrementable<P>
sl@0
    35
      , iterator_reference<P>
sl@0
    36
      , detail::smart_ptr_reference<P>
sl@0
    37
    >
sl@0
    38
{
sl@0
    39
};
sl@0
    40
  
sl@0
    41
} // namespace boost
sl@0
    42
sl@0
    43
#endif // INDIRECT_REFERENCE_DWA200415_HPP