You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

12345678910111213141516171819202122232425262728293031
  1. // Range v3 library
  2. //
  3. // Copyright Eric Niebler 2013-present
  4. //
  5. // Use, modification and distribution is subject to the
  6. // Boost Software License, Version 1.0. (See accompanying
  7. // file LICENSE_1_0.txt or copy at
  8. // http://www.boost.org/LICENSE_1_0.txt)
  9. //
  10. // Project home: https://github.com/ericniebler/range-v3
  11. //
  12. #ifndef RANGES_V3_UTILITY_ITERATOR_HPP
  13. #define RANGES_V3_UTILITY_ITERATOR_HPP
  14. #include <range/v3/detail/config.hpp>
  15. RANGES_DEPRECATED_HEADER(
  16. R"(This header is deprecated. Please include one of the following depending on your need:
  17. <range/v3/iterator/operations.hpp>,
  18. <range/v3/iterator/insert_iterators.hpp>,
  19. <range/v3/iterator/move_iterators.hpp>,
  20. <range/v3/iterator/reverse_iterator.hpp>,
  21. <range/v3/iterator/stream_iterators.hpp>)")
  22. #include <range/v3/iterator/insert_iterators.hpp>
  23. #include <range/v3/iterator/move_iterators.hpp>
  24. #include <range/v3/iterator/operations.hpp>
  25. #include <range/v3/iterator/reverse_iterator.hpp>
  26. #include <range/v3/iterator/stream_iterators.hpp>
  27. #endif