annotate DEPENDENCIES/generic/include/boost/range/traversal.hpp @ 125:34e428693f5d vext

Vext -> Repoint
author Chris Cannam
date Thu, 14 Jun 2018 11:15:39 +0100
parents f46d142149f5
children
rev   line source
Chris@102 1 // Boost.Range library
Chris@102 2 //
Chris@102 3 // Copyright Neil Groves 2014. Use, modification and
Chris@102 4 // distribution is subject to the Boost Software License, Version
Chris@102 5 // 1.0. (See accompanying file LICENSE_1_0.txt or copy at
Chris@102 6 // http://www.boost.org/LICENSE_1_0.txt)
Chris@102 7 //
Chris@102 8 // For more information, see http://www.boost.org/libs/range/
Chris@102 9 //
Chris@102 10
Chris@102 11 #ifndef BOOST_RANGE_TRAVERSAL_HPP
Chris@102 12 #define BOOST_RANGE_TRAVERSAL_HPP
Chris@102 13
Chris@102 14 #if defined(_MSC_VER)
Chris@102 15 # pragma once
Chris@102 16 #endif
Chris@102 17
Chris@102 18 #include <boost/range/config.hpp>
Chris@102 19 #include <boost/range/iterator.hpp>
Chris@102 20 #include <boost/iterator/iterator_traits.hpp>
Chris@102 21
Chris@102 22 namespace boost
Chris@102 23 {
Chris@102 24 template<typename SinglePassRange>
Chris@102 25 struct range_traversal
Chris@102 26 : iterator_traversal<typename range_iterator<SinglePassRange>::type>
Chris@102 27 {
Chris@102 28 };
Chris@102 29 }
Chris@102 30
Chris@102 31 #endif