memory
上传用户:sichengcw
上传日期:2009-02-17
资源大小:202k
文件大小:2k
源码类别:

STL

开发平台:

Visual C++

  1. /*
  2.  * Copyright (c) 1997
  3.  * Silicon Graphics Computer Systems, Inc.
  4.  *
  5.  * Permission to use, copy, modify, distribute and sell this software
  6.  * and its documentation for any purpose is hereby granted without fee,
  7.  * provided that the above copyright notice appear in all copies and
  8.  * that both that copyright notice and this permission notice appear
  9.  * in supporting documentation.  Silicon Graphics makes no
  10.  * representations about the suitability of this software for any
  11.  * purpose.  It is provided "as is" without express or implied warranty.
  12.  *
  13.  */
  14. #ifndef __SGI_STL_MEMORY
  15. #define __SGI_STL_MEMORY
  16. #include <stl_algobase.h>
  17. #include <stl_alloc.h>
  18. #include <stl_construct.h>
  19. #include <stl_tempbuf.h>
  20. #include <stl_uninitialized.h>
  21. #include <stl_raw_storage_iter.h>
  22. // Note: auto_ptr is commented out in this release because the details
  23. //  of the interface are still being discussed by the C++ standardization
  24. //  committee.  It will be included once the iterface is finalized.
  25. #if 0
  26. #if defined(_MUTABLE_IS_KEYWORD) && defined(_EXPLICIT_IS_KEYWORD) && 
  27.     defined(__STL_MEMBER_TEMPLATES)
  28. __STL_BEGIN_NAMESPACE
  29. template <class X> class auto_ptr {
  30. private:
  31.   X* ptr;
  32.   mutable bool owns;
  33. public:
  34.   typedef X element_type;
  35.   explicit auto_ptr(X* p = 0) __STL_NOTHROW : ptr(p), owns(p) {}
  36.   auto_ptr(const auto_ptr& a) __STL_NOTHROW : ptr(a.ptr), owns(a.owns) {
  37.     a.owns = 0;
  38.   }
  39.   template <class T> auto_ptr(const auto_ptr<T>& a) __STL_NOTHROW
  40.     : ptr(a.ptr), owns(a.owns) {
  41.       a.owns = 0;
  42.   }
  43.   auto_ptr& operator=(const auto_ptr& a) __STL_NOTHROW {
  44.     if (&a != this) {
  45.       if (owns)
  46.         delete ptr;
  47.       owns = a.owns;
  48.       ptr = a.ptr;
  49.       a.owns = 0;
  50.     }
  51.   }
  52.   template <class T> auto_ptr& operator=(const auto_ptr<T>& a) __STL_NOTHROW {
  53.     if (&a != this) {
  54.       if (owns)
  55.         delete ptr;
  56.       owns = a.owns;
  57.       ptr = a.ptr;
  58.       a.owns = 0;
  59.     }
  60.   }
  61.   ~auto_ptr() {
  62.     if (owns)
  63.       delete ptr;
  64.   }
  65.   X& operator*() const __STL_NOTHROW { return *ptr; }
  66.   X* operator->() const __STL_NOTHROW { return ptr; }
  67.   X* get() const __STL_NOTHROW { return ptr; }
  68.   X* release const __STL_NOTHROW { owns = false; return ptr }
  69. };
  70. __STL_END_NAMESPACE
  71. #endif /* mutable && explicit && member templates */
  72. #endif /* 0 */
  73. #endif /* __SGI_STL_MEMORY */
  74. // Local Variables:
  75. // mode:C++
  76. // End: