// 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 # ifndef BOOST_NO_SFINAE # include # include # endif template class node_iter : public boost::iterator_facade< node_iter , Value , boost::forward_traversal_tag > { private: struct enabler {}; // a private type avoids misuse public: node_iter() : m_node(0) {} explicit node_iter(Value* p) : m_node(p) {} template node_iter( node_iter const& other # ifndef BOOST_NO_SFINAE , typename boost::enable_if< boost::is_convertible , enabler >::type = enabler() # endif ) : m_node(other.m_node) {} # if !BOOST_WORKAROUND(__GNUC__, == 2) private: // GCC2 can't grant friendship to template member functions friend class boost::iterator_core_access; # endif template bool equal(node_iter const& other) const { return this->m_node == other.m_node; } void increment() { m_node = m_node->next(); } Value& dereference() const { return *m_node; } # ifdef BOOST_NO_MEMBER_TEMPLATE_FRIENDS public: # else private: template friend class node_iter; # endif Value* m_node; }; typedef node_iter node_iterator; typedef node_iter node_const_iterator; #endif // NODE_ITERATOR2_DWA2004110_HPP