2004-01-06 17:35:36 +00:00
|
|
|
#ifndef POINTEE_DWA200415_HPP
|
2025-01-26 17:57:47 +03:00
|
|
|
#define POINTEE_DWA200415_HPP
|
2004-01-06 17:35:36 +00:00
|
|
|
|
2005-03-20 14:53:58 +00:00
|
|
|
//
|
|
|
|
// Copyright David Abrahams 2004. Use, modification and distribution is
|
|
|
|
// subject to the Boost Software License, Version 1.0. (See accompanying
|
|
|
|
// file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
|
|
|
|
//
|
|
|
|
// typename pointee<P>::type provides the pointee type of P.
|
|
|
|
//
|
|
|
|
// For example, it is T for T* and X for shared_ptr<X>.
|
|
|
|
//
|
|
|
|
// http://www.boost.org/libs/iterator/doc/pointee.html
|
|
|
|
//
|
2004-01-06 17:35:36 +00:00
|
|
|
|
2025-01-26 17:57:47 +03:00
|
|
|
#include <boost/detail/is_incrementable.hpp>
|
|
|
|
#include <boost/iterator/iterator_traits.hpp>
|
2004-01-06 17:35:36 +00:00
|
|
|
|
2015-09-14 09:34:02 +02:00
|
|
|
#include <iterator>
|
2025-01-26 15:17:36 +03:00
|
|
|
#include <type_traits>
|
2015-09-14 09:34:02 +02:00
|
|
|
|
2014-07-03 00:36:44 +04:00
|
|
|
namespace boost {
|
2025-01-26 17:57:47 +03:00
|
|
|
namespace detail {
|
2004-01-06 17:35:36 +00:00
|
|
|
|
2025-01-26 17:57:47 +03:00
|
|
|
template< typename P >
|
|
|
|
struct smart_ptr_pointee
|
2004-01-06 17:35:36 +00:00
|
|
|
{
|
2025-01-26 17:57:47 +03:00
|
|
|
using type = typename P::element_type;
|
|
|
|
};
|
|
|
|
|
|
|
|
template< typename Iterator, typename = typename std::remove_reference<decltype(*std::declval<Iterator&>())>::type >
|
|
|
|
struct iterator_pointee
|
|
|
|
{
|
|
|
|
using type = typename std::iterator_traits<Iterator>::value_type;
|
|
|
|
};
|
|
|
|
|
|
|
|
template< typename Iterator, typename Reference >
|
|
|
|
struct iterator_pointee< Iterator, const Reference >
|
|
|
|
{
|
|
|
|
using type = typename std::add_const<typename std::iterator_traits<Iterator>::value_type>::type;
|
|
|
|
};
|
|
|
|
|
|
|
|
} // namespace detail
|
|
|
|
|
|
|
|
template< typename P >
|
|
|
|
struct pointee :
|
|
|
|
public std::conditional<
|
|
|
|
detail::is_incrementable<P>::value,
|
|
|
|
detail::iterator_pointee<P>,
|
|
|
|
detail::smart_ptr_pointee<P>
|
|
|
|
>::type
|
2004-01-06 17:35:36 +00:00
|
|
|
{
|
|
|
|
};
|
2014-07-03 00:36:44 +04:00
|
|
|
|
2004-01-06 17:35:36 +00:00
|
|
|
} // namespace boost
|
|
|
|
|
|
|
|
#endif // POINTEE_DWA200415_HPP
|