1234567891011121314151617181920212223242526272829 |
- #ifndef BOOST_RANGE_REFERENCE_TYPE_HPP
- #define BOOST_RANGE_REFERENCE_TYPE_HPP
- #if defined(_MSC_VER) && (_MSC_VER >= 1200)
- # pragma once
- #endif
- #include <boost/range/config.hpp>
- #include <boost/range/iterator.hpp>
- #include <boost/iterator/iterator_traits.hpp>
- namespace boost
- {
- template< class T >
- struct range_reference : iterator_reference< typename range_iterator<T>::type >
- { };
- }
- #endif
|