2004-01-06 17:35:36 +00:00
|
|
|
#ifndef POINTEE_DWA200415_HPP
|
|
|
|
# define POINTEE_DWA200415_HPP
|
|
|
|
|
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
|
|
|
|
|
|
|
# include <boost/detail/is_incrementable.hpp>
|
|
|
|
# include <boost/iterator/iterator_traits.hpp>
|
2004-09-02 15:41:37 +00:00
|
|
|
# include <boost/mpl/eval_if.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 {
|
2004-01-06 17:35:36 +00:00
|
|
|
|
|
|
|
namespace detail
|
|
|
|
{
|
|
|
|
template <class P>
|
2004-01-11 00:03:09 +00:00
|
|
|
struct smart_ptr_pointee
|
2004-01-06 17:35:36 +00:00
|
|
|
{
|
2004-01-11 00:03:09 +00:00
|
|
|
typedef typename P::element_type type;
|
|
|
|
};
|
|
|
|
|
|
|
|
template <class Iterator>
|
|
|
|
struct iterator_pointee
|
|
|
|
{
|
2015-09-14 09:34:02 +02:00
|
|
|
typedef typename std::iterator_traits<Iterator>::value_type value_type;
|
2025-01-26 15:17:36 +03:00
|
|
|
|
|
|
|
typedef typename std::conditional<
|
|
|
|
std::is_const<
|
|
|
|
typename std::remove_reference<decltype(*std::declval<Iterator&>())>::type
|
|
|
|
>::value
|
|
|
|
, typename std::add_const<value_type>::type
|
2004-01-11 00:03:09 +00:00
|
|
|
, value_type
|
|
|
|
>::type type;
|
2004-01-06 17:35:36 +00:00
|
|
|
};
|
|
|
|
}
|
|
|
|
|
|
|
|
template <class P>
|
|
|
|
struct pointee
|
2004-09-02 15:41:37 +00:00
|
|
|
: mpl::eval_if<
|
2004-01-13 19:18:42 +00:00
|
|
|
detail::is_incrementable<P>
|
|
|
|
, detail::iterator_pointee<P>
|
|
|
|
, detail::smart_ptr_pointee<P>
|
|
|
|
>
|
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
|