iterator.hpp 459 B

1234567891011121314151617181920
  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. // This header is obsolete and will be deprecated.
  7. #include <iterator>
  8. #include <cstddef> // std::ptrdiff_t
  9. namespace boost
  10. {
  11. using std::iterator;
  12. } // namespace boost
  13. #endif // BOOST_ITERATOR_HPP