2004-07-26 00:32:12 +00:00
|
|
|
// (C) Copyright David Abrahams 2002.
|
|
|
|
// 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)
|
2001-01-21 05:18:41 +00:00
|
|
|
|
|
|
|
#ifndef ITERATOR_DWA122600_HPP_
|
2014-06-08 19:02:03 +03:00
|
|
|
#define ITERATOR_DWA122600_HPP_
|
2003-08-28 16:52:02 +00:00
|
|
|
|
2014-06-08 19:02:03 +03:00
|
|
|
// This header is obsolete and will be deprecated.
|
2003-08-28 16:52:02 +00:00
|
|
|
|
2014-06-08 19:02:03 +03:00
|
|
|
#include <iterator>
|
2002-11-08 06:57:31 +00:00
|
|
|
|
2014-06-08 19:02:03 +03:00
|
|
|
namespace boost
|
2001-01-21 05:18:41 +00:00
|
|
|
{
|
|
|
|
|
2014-06-08 19:02:03 +03:00
|
|
|
namespace detail
|
2001-01-21 05:18:41 +00:00
|
|
|
{
|
2002-11-08 06:57:31 +00:00
|
|
|
|
2014-06-08 19:02:03 +03:00
|
|
|
using std::iterator_traits;
|
|
|
|
using std::distance;
|
2003-08-28 16:52:02 +00:00
|
|
|
|
2014-06-08 19:02:03 +03:00
|
|
|
} // namespace detail
|
2001-01-21 05:18:41 +00:00
|
|
|
|
2014-06-08 19:02:03 +03:00
|
|
|
} // namespace boost
|
2001-01-21 05:18:41 +00:00
|
|
|
|
|
|
|
#endif // ITERATOR_DWA122600_HPP_
|