Brian Silverman | 598d029 | 2018-08-04 23:56:47 -0700 | [diff] [blame^] | 1 | // Boost.Range library |
| 2 | // |
| 3 | // Copyright Neil Groves 2007. |
| 4 | // Copyright Thorsten Ottosen 2006. |
| 5 | // Use, modification and distribution is subject to the Boost Software |
| 6 | // License, Version 1.0. (See accompanying file LICENSE_1_0.txt or copy at |
| 7 | // http://www.boost.org/LICENSE_1_0.txt) |
| 8 | // |
| 9 | // For more information, see http://www.boost.org/libs/range/ |
| 10 | // |
| 11 | |
| 12 | #ifndef BOOST_RANGE_ADAPTORS_HPP |
| 13 | #define BOOST_RANGE_ADAPTORS_HPP |
| 14 | |
| 15 | #include <boost/range/adaptor/adjacent_filtered.hpp> |
| 16 | #include <boost/range/adaptor/copied.hpp> |
| 17 | #include <boost/range/adaptor/filtered.hpp> |
| 18 | #include <boost/range/adaptor/formatted.hpp> |
| 19 | #include <boost/range/adaptor/indexed.hpp> |
| 20 | #include <boost/range/adaptor/indirected.hpp> |
| 21 | #include <boost/range/adaptor/map.hpp> |
| 22 | #include <boost/range/adaptor/replaced.hpp> |
| 23 | #include <boost/range/adaptor/replaced_if.hpp> |
| 24 | #include <boost/range/adaptor/reversed.hpp> |
| 25 | #include <boost/range/adaptor/sliced.hpp> |
| 26 | #include <boost/range/adaptor/strided.hpp> |
| 27 | #include <boost/range/adaptor/tokenized.hpp> |
| 28 | #include <boost/range/adaptor/transformed.hpp> |
| 29 | #include <boost/range/adaptor/uniqued.hpp> |
| 30 | |
| 31 | #endif |