stl_raw_.h
上传用户:nizebo
上传日期:2022-05-14
资源大小:882k
文件大小:3k
源码类别:

STL

开发平台:

Visual C++

  1. /*
  2.  *
  3.  * Copyright (c) 1994
  4.  * Hewlett-Packard Company
  5.  *
  6.  * Permission to use, copy, modify, distribute and sell this software
  7.  * and its documentation for any purpose is hereby granted without fee,
  8.  * provided that the above copyright notice appear in all copies and
  9.  * that both that copyright notice and this permission notice appear
  10.  * in supporting documentation.  Hewlett-Packard Company makes no
  11.  * representations about the suitability of this software for any
  12.  * purpose.  It is provided "as is" without express or implied warranty.
  13.  *
  14.  *
  15.  * Copyright (c) 1996
  16.  * Silicon Graphics Computer Systems, Inc.
  17.  *
  18.  * Permission to use, copy, modify, distribute and sell this software
  19.  * and its documentation for any purpose is hereby granted without fee,
  20.  * provided that the above copyright notice appear in all copies and
  21.  * that both that copyright notice and this permission notice appear
  22.  * in supporting documentation.  Silicon Graphics makes no
  23.  * representations about the suitability of this software for any
  24.  * purpose.  It is provided "as is" without express or implied warranty.
  25.  */
  26. /* NOTE: This is an internal header file, included by other STL headers.
  27.  * You should not attempt to use it directly.
  28.  */
  29. #ifndef __SGI_STL_INTERNAL_RAW_STORAGE_ITERATOR_H
  30. #define __SGI_STL_INTERNAL_RAW_STORAGE_ITERATOR_H
  31. __STL_BEGIN_NAMESPACE
  32. template <class _ForwardIterator, class _Tp>
  33. class raw_storage_iterator {
  34. protected:
  35.   _ForwardIterator _M_iter;
  36. public:
  37.   typedef output_iterator_tag iterator_category;
  38.   typedef void                value_type;
  39.   typedef void                difference_type;
  40.   typedef void                pointer;
  41.   typedef void                reference;
  42.   explicit raw_storage_iterator(_ForwardIterator __x) : _M_iter(__x) {}
  43.   raw_storage_iterator& operator*() { return *this; }
  44.   raw_storage_iterator& operator=(const _Tp& __element) {
  45.     construct(&*_M_iter, __element);
  46.     return *this;
  47.   }        
  48.   raw_storage_iterator<_ForwardIterator, _Tp>& operator++() {
  49.     ++_M_iter;
  50.     return *this;
  51.   }
  52.   raw_storage_iterator<_ForwardIterator, _Tp> operator++(int) {
  53.     raw_storage_iterator<_ForwardIterator, _Tp> __tmp = *this;
  54.     ++_M_iter;
  55.     return __tmp;
  56.   }
  57. };
  58. #ifndef __STL_CLASS_PARTIAL_SPECIALIZATION
  59. template <class _ForwardIterator, class _Tp>
  60. inline output_iterator_tag
  61. iterator_category(const raw_storage_iterator<_ForwardIterator, _Tp>&)
  62. {
  63.   return output_iterator_tag();
  64. }
  65. #endif /* __STL_CLASS_PARTIAL_SPECIALIZATION */
  66. __STL_END_NAMESPACE
  67. #endif /* __SGI_STL_INTERNAL_RAW_STORAGE_ITERATOR_H */
  68. // Local Variables:
  69. // mode:C++
  70. // End: