iterator.hpp 493 B

12345678910111213141516171819202122
  1. // (C) Copyright Beman Dawes 2000. Distributed under the Boost
  2. // Software License, Version 1.0. (See accompanying file
  3. // LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
  4. #ifndef BOOST_ITERATOR_HPP
  5. #define BOOST_ITERATOR_HPP
  6. #include <boost/config/header_deprecated.hpp>
  7. BOOST_HEADER_DEPRECATED("<iterator>")
  8. #include <iterator>
  9. #include <cstddef> // std::ptrdiff_t
  10. namespace boost
  11. {
  12. using std::iterator;
  13. } // namespace boost
  14. #endif // BOOST_ITERATOR_HPP