2004-08-10 12:53:34 +00:00
|
|
|
// (C) Copyright Beman Dawes 2000. Distributed under the Boost
|
|
|
|
// Software License, Version 1.0. (See accompanying file
|
|
|
|
// LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
|
2000-07-07 16:04:40 +00:00
|
|
|
|
|
|
|
#ifndef BOOST_ITERATOR_HPP
|
|
|
|
#define BOOST_ITERATOR_HPP
|
|
|
|
|
2021-12-23 16:41:32 +03:00
|
|
|
#include <boost/config/header_deprecated.hpp>
|
|
|
|
|
|
|
|
BOOST_HEADER_DEPRECATED("<iterator>")
|
2014-06-08 19:07:13 +03:00
|
|
|
|
2000-07-07 16:04:40 +00:00
|
|
|
#include <iterator>
|
2001-01-12 18:50:21 +00:00
|
|
|
#include <cstddef> // std::ptrdiff_t
|
2000-07-07 16:04:40 +00:00
|
|
|
|
|
|
|
namespace boost
|
|
|
|
{
|
|
|
|
|
2014-06-08 19:07:13 +03:00
|
|
|
using std::iterator;
|
2000-07-07 16:04:40 +00:00
|
|
|
|
|
|
|
} // namespace boost
|
|
|
|
|
|
|
|
#endif // BOOST_ITERATOR_HPP
|