iterator.hpp 501 B

1234567891011121314151617181920212223242526
  1. // (C) Copyright David Abrahams 2002.
  2. // Distributed under the Boost Software License, Version 1.0. (See
  3. // accompanying file LICENSE_1_0.txt or copy at
  4. // http://www.boost.org/LICENSE_1_0.txt)
  5. #ifndef ITERATOR_DWA122600_HPP_
  6. #define ITERATOR_DWA122600_HPP_
  7. // This header is obsolete and will be deprecated.
  8. #include <iterator>
  9. namespace boost
  10. {
  11. namespace detail
  12. {
  13. using std::iterator_traits;
  14. using std::distance;
  15. } // namespace detail
  16. } // namespace boost
  17. #endif // ITERATOR_DWA122600_HPP_