Brian Silverman | 598d029 | 2018-08-04 23:56:47 -0700 | [diff] [blame^] | 1 | // Boost.Range library |
| 2 | // |
| 3 | // Copyright Neil Groves 2007. Use, modification and |
| 4 | // distribution is subject to the Boost Software License, Version |
| 5 | // 1.0. (See accompanying file LICENSE_1_0.txt or copy at |
| 6 | // http://www.boost.org/LICENSE_1_0.txt) |
| 7 | // |
| 8 | // Copyright Thorsten Ottosen 2006. Use, modification and |
| 9 | // distribution is subject to the Boost Software License, Version |
| 10 | // 1.0. (See accompanying file LICENSE_1_0.txt or copy at |
| 11 | // http://www.boost.org/LICENSE_1_0.txt) |
| 12 | // |
| 13 | // For more information, see http://www.boost.org/libs/range/ |
| 14 | // |
| 15 | #ifndef BOOST_RANGE_ALGORITHM_EXT_HPP |
| 16 | #define BOOST_RANGE_ALGORITHM_EXT_HPP |
| 17 | |
| 18 | #include <boost/range/algorithm_ext/copy_n.hpp> |
| 19 | #include <boost/range/algorithm_ext/for_each.hpp> |
| 20 | #include <boost/range/algorithm_ext/is_sorted.hpp> |
| 21 | #include <boost/range/algorithm_ext/iota.hpp> |
| 22 | #include <boost/range/algorithm_ext/overwrite.hpp> |
| 23 | #include <boost/range/algorithm_ext/push_back.hpp> |
| 24 | #include <boost/range/algorithm_ext/push_front.hpp> |
| 25 | #include <boost/range/algorithm_ext/insert.hpp> |
| 26 | #include <boost/range/algorithm_ext/erase.hpp> |
| 27 | |
| 28 | #endif |