os/ossrv/ossrv_pub/boost_apis/boost/iterator.hpp
author sl
Tue, 10 Jun 2014 14:32:02 +0200
changeset 1 260cb5ec6c19
permissions -rw-r--r--
Update contrib.
sl@0
     1
//  interator.hpp workarounds for non-conforming standard libraries  ---------//
sl@0
     2
sl@0
     3
//  (C) Copyright Beman Dawes 2000. Distributed under the Boost
sl@0
     4
//  Software License, Version 1.0. (See accompanying file
sl@0
     5
//  LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
sl@0
     6
sl@0
     7
//  See http://www.boost.org/libs/utility for documentation.
sl@0
     8
sl@0
     9
//  Revision History
sl@0
    10
//  12 Jan 01 added <cstddef> for std::ptrdiff_t (Jens Maurer)
sl@0
    11
//  28 Jun 00 Workarounds to deal with known MSVC bugs (David Abrahams)
sl@0
    12
//  26 Jun 00 Initial version (Jeremy Siek)
sl@0
    13
sl@0
    14
#ifndef BOOST_ITERATOR_HPP
sl@0
    15
#define BOOST_ITERATOR_HPP
sl@0
    16
sl@0
    17
#include <iterator>
sl@0
    18
#include <cstddef>           // std::ptrdiff_t
sl@0
    19
#include <boost/config.hpp>
sl@0
    20
sl@0
    21
namespace boost
sl@0
    22
{
sl@0
    23
# if defined(BOOST_NO_STD_ITERATOR) && !defined(BOOST_MSVC_STD_ITERATOR)
sl@0
    24
  template <class Category, class T,
sl@0
    25
    class Distance = std::ptrdiff_t,
sl@0
    26
    class Pointer = T*, class Reference = T&>
sl@0
    27
  struct iterator
sl@0
    28
  {
sl@0
    29
    typedef T         value_type;
sl@0
    30
    typedef Distance  difference_type;
sl@0
    31
    typedef Pointer   pointer;
sl@0
    32
    typedef Reference reference;
sl@0
    33
    typedef Category  iterator_category;
sl@0
    34
  };
sl@0
    35
# else
sl@0
    36
sl@0
    37
  // declare iterator_base in namespace detail to work around MSVC bugs which
sl@0
    38
  // prevent derivation from an identically-named class in a different namespace.
sl@0
    39
  namespace detail {
sl@0
    40
   template <class Category, class T, class Distance, class Pointer, class Reference>
sl@0
    41
#  if !defined(BOOST_MSVC_STD_ITERATOR)
sl@0
    42
   struct iterator_base : std::iterator<Category, T, Distance, Pointer, Reference> {};
sl@0
    43
#  else
sl@0
    44
   struct iterator_base : std::iterator<Category, T, Distance>
sl@0
    45
   {
sl@0
    46
     typedef Reference reference;
sl@0
    47
     typedef Pointer pointer;
sl@0
    48
     typedef Distance difference_type;
sl@0
    49
   };
sl@0
    50
#  endif
sl@0
    51
  }
sl@0
    52
sl@0
    53
  template <class Category, class T, class Distance = std::ptrdiff_t,
sl@0
    54
            class Pointer = T*, class Reference = T&>
sl@0
    55
  struct iterator : boost::detail::iterator_base<Category, T, Distance, Pointer, Reference> {};
sl@0
    56
# endif
sl@0
    57
} // namespace boost
sl@0
    58
sl@0
    59
#endif // BOOST_ITERATOR_HPP