2004-01-06 17:35:36 +00:00
|
|
|
#ifndef INDIRECT_REFERENCE_DWA200415_HPP
|
|
|
|
# define INDIRECT_REFERENCE_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 indirect_reference<P>::type provides the type of *p.
|
|
|
|
//
|
|
|
|
// 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>
|
|
|
|
# include <boost/type_traits/remove_cv.hpp>
|
2004-09-02 15:41:37 +00:00
|
|
|
# include <boost/mpl/eval_if.hpp>
|
2004-01-11 00:03:09 +00:00
|
|
|
# include <boost/pointee.hpp>
|
2004-01-06 17:35:36 +00:00
|
|
|
|
|
|
|
namespace boost {
|
|
|
|
|
|
|
|
namespace detail
|
|
|
|
{
|
|
|
|
template <class P>
|
|
|
|
struct smart_ptr_reference
|
|
|
|
{
|
2004-01-11 00:03:09 +00:00
|
|
|
typedef typename boost::pointee<P>::type& type;
|
2004-01-06 17:35:36 +00:00
|
|
|
};
|
|
|
|
}
|
|
|
|
|
|
|
|
template <class P>
|
|
|
|
struct indirect_reference
|
2004-09-02 15:41:37 +00:00
|
|
|
: mpl::eval_if<
|
2004-01-13 19:18:42 +00:00
|
|
|
detail::is_incrementable<P>
|
|
|
|
, iterator_reference<P>
|
|
|
|
, detail::smart_ptr_reference<P>
|
|
|
|
>
|
2004-01-06 17:35:36 +00:00
|
|
|
{
|
|
|
|
};
|
|
|
|
|
|
|
|
} // namespace boost
|
|
|
|
|
|
|
|
#endif // INDIRECT_REFERENCE_DWA200415_HPP
|