Files
boost_iterator/example/node_iterator2.hpp

59 lines
1.6 KiB
C++
Raw Normal View History

// 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)
#ifndef NODE_ITERATOR2_DWA2004110_HPP
# define NODE_ITERATOR2_DWA2004110_HPP
# include "node.hpp"
# include <boost/iterator/iterator_adaptor.hpp>
# ifndef BOOST_NO_SFINAE
# include <boost/type_traits/is_convertible.hpp>
# include <boost/utility/enable_if.hpp>
# endif
2004-01-12 02:49:55 +00:00
template <class Value>
class node_iter
: public boost::iterator_adaptor<
node_iter<Value> // Derived
, Value* // Base
, boost::use_default // Value
, boost::forward_traversal_tag // CategoryOrTraversal
2004-01-12 02:49:55 +00:00
>
{
2004-01-12 02:49:55 +00:00
private:
struct enabler {}; // a private type avoids misuse
typedef boost::iterator_adaptor<
node_iter<Value>, Value*, boost::use_default, boost::forward_traversal_tag
> super_t;
2004-01-12 02:49:55 +00:00
public:
node_iter()
: super_t(0) {}
2004-01-12 02:49:55 +00:00
explicit node_iter(Value* p)
: super_t(p) {}
2004-01-12 02:49:55 +00:00
template <class OtherValue>
node_iter(
node_iter<OtherValue> const& other
# ifndef BOOST_NO_SFINAE
2004-01-12 02:49:55 +00:00
, typename boost::enable_if<
boost::is_convertible<OtherValue*,Value*>
, enabler
>::type = enabler()
# endif
2004-01-12 02:49:55 +00:00
)
: m_node(other.m_node) {}
private:
friend class boost::iterator_core_access;
2004-01-12 02:49:55 +00:00
void increment() { m_node = m_node->next(); }
};
2004-01-12 02:49:55 +00:00
typedef node_iter<node_base> node_iterator;
typedef node_iter<node_base const> node_const_iterator;
#endif // NODE_ITERATOR2_DWA2004110_HPP