algorithm_ext.hpp 1.0 KB

12345678910111213141516171819202122232425262728
  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. #include <boost/range/algorithm_ext/copy_n.hpp>
  18. #include <boost/range/algorithm_ext/for_each.hpp>
  19. #include <boost/range/algorithm_ext/is_sorted.hpp>
  20. #include <boost/range/algorithm_ext/iota.hpp>
  21. #include <boost/range/algorithm_ext/overwrite.hpp>
  22. #include <boost/range/algorithm_ext/push_back.hpp>
  23. #include <boost/range/algorithm_ext/push_front.hpp>
  24. #include <boost/range/algorithm_ext/insert.hpp>
  25. #include <boost/range/algorithm_ext/erase.hpp>
  26. #endif