| // Copyright Thorsten Ottosen 2003-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) |
| // For more information, see http://www.boost.org/libs/range/ |
| #ifndef BOOST_RANGE_REND_HPP |
| #define BOOST_RANGE_REND_HPP |
| #if defined(_MSC_VER) && (_MSC_VER >= 1200) |
| #include <ndnboost/range/begin.hpp> |
| #include <ndnboost/range/reverse_iterator.hpp> |
| #ifdef BOOST_NO_FUNCTION_TEMPLATE_ORDERING |
| inline BOOST_DEDUCED_TYPENAME range_reverse_iterator<C>::type |
| return BOOST_DEDUCED_TYPENAME range_reverse_iterator<C>::type( ndnboost::begin( c ) ); |
| inline BOOST_DEDUCED_TYPENAME range_reverse_iterator<C>::type |
| typedef BOOST_DEDUCED_TYPENAME range_reverse_iterator<C>::type |
| return iter_type( ndnboost::begin( c ) ); |
| inline BOOST_DEDUCED_TYPENAME range_reverse_iterator<const C>::type |
| typedef BOOST_DEDUCED_TYPENAME range_reverse_iterator<const C>::type |
| return iter_type( ndnboost::begin( c ) ); |
| inline BOOST_DEDUCED_TYPENAME range_reverse_iterator<const T>::type |
| return ndnboost::rend( r ); |