Back to home page

EIC code displayed by LXR

 
 

    


File indexing completed on 2025-01-18 09:51:17

0001 // Boost.Range library
0002 //
0003 //  Copyright Neil Groves 2007.
0004 //  Copyright Thorsten Ottosen 2006.
0005 //  Use, modification and distribution is subject to the Boost Software
0006 //  License, Version 1.0. (See accompanying file LICENSE_1_0.txt or copy at
0007 //  http://www.boost.org/LICENSE_1_0.txt)
0008 //
0009 // For more information, see http://www.boost.org/libs/range/
0010 //
0011 
0012 #ifndef BOOST_RANGE_ADAPTORS_HPP
0013 #define BOOST_RANGE_ADAPTORS_HPP
0014 
0015 #include <boost/range/adaptor/adjacent_filtered.hpp>
0016 #include <boost/range/adaptor/copied.hpp>
0017 #include <boost/range/adaptor/filtered.hpp>
0018 #include <boost/range/adaptor/formatted.hpp>
0019 #include <boost/range/adaptor/indexed.hpp>
0020 #include <boost/range/adaptor/indirected.hpp>
0021 #include <boost/range/adaptor/map.hpp>
0022 #include <boost/range/adaptor/replaced.hpp>
0023 #include <boost/range/adaptor/replaced_if.hpp>
0024 #include <boost/range/adaptor/reversed.hpp>
0025 #include <boost/range/adaptor/sliced.hpp>
0026 #include <boost/range/adaptor/strided.hpp>
0027 #include <boost/range/adaptor/tokenized.hpp>
0028 #include <boost/range/adaptor/transformed.hpp>
0029 #include <boost/range/adaptor/uniqued.hpp>
0030 
0031 #endif