/*============================================================================= Copyright (c) 2001-2009 Joel de Guzman Copyright (c) 2005-2006 Dan Marsden Distributed under 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) ==============================================================================*/ #if !defined(FUSION_CLASS_ITERATOR_OCTOBER_4_2009_839M) #define FUSION_CLASS_ITERATOR_OCTOBER_4_2009_839M #include #include #include #include #include #include #include #include #include #include namespace boost { namespace fusion { struct random_access_traversal_tag; template struct class_iterator : iterator_facade, random_access_traversal_tag> { BOOST_MPL_ASSERT_RELATION(N_, >=, 0); BOOST_MPL_ASSERT_RELATION(N_, <=, extension::class_size::value); typedef mpl::int_ index; typedef Class class_type; class_iterator(Class& class_) : class_(class_) {} Class& class_; template struct value_of : extension::class_member { }; template struct deref { typedef typename mpl::if_< is_const , typename extension::class_member::get_type , typename extension::class_member::proxy >::type type; static type call(Iterator const& iter) { return extension::class_member:: call(iter.class_); } }; template struct advance { typedef typename Iterator::index index; typedef typename Iterator::class_type class_type; typedef class_iterator type; static type call(Iterator const& iter) { return type(iter.class_); } }; template struct next : advance > {}; template struct prior : advance > {}; template struct distance : mpl::minus { typedef typename mpl::minus< typename I2::index, typename I1::index >::type type; static type call(I1 const&, I2 const&) { return type(); } }; }; }} #endif