memory
上传用户:kellyonhid
上传日期:2013-10-12
资源大小:932k
文件大小:3k
源码类别:

3D图形编程

开发平台:

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. #if defined(__STL_MEMBER_TEMPLATES)
  23. __STL_BEGIN_NAMESPACE
  24. template <class _T> class auto_ptr {
  25. private:
  26.   _T* _M_ptr;
  27. public:
  28.   typedef _T element_type;
  29.   explicit auto_ptr(_T* __p = 0) __STL_NOTHROW : _M_ptr(__p) {}
  30.   auto_ptr(auto_ptr& __a) __STL_NOTHROW : _M_ptr(__a.release()) {}
  31.   template <class _T1> auto_ptr(auto_ptr<_T1>& __a) __STL_NOTHROW
  32.     : _M_ptr(__a.release()) {}
  33.   auto_ptr& operator=(auto_ptr& __a) __STL_NOTHROW {
  34.     if (&__a != this) {
  35.       delete _M_ptr;
  36.       _M_ptr = __a.release();
  37.     }
  38.     return *this;
  39.   }
  40.   template <class _T1> auto_ptr& operator=(auto_ptr<_T1>& __a) __STL_NOTHROW {
  41.     if (__a.get() != this->get()) {
  42.       delete _M_ptr;
  43.       _M_ptr = __a.release();
  44.     }
  45.     return *this;
  46.   }
  47.   ~auto_ptr() __STL_NOTHROW { delete _M_ptr; }
  48.   _T& operator*() const __STL_NOTHROW {
  49.     return *_M_ptr;
  50.   }
  51.   _T* operator->() const __STL_NOTHROW {
  52.     return _M_ptr;
  53.   }
  54.   _T* get() const __STL_NOTHROW {
  55.     return _M_ptr;
  56.   }
  57.   _T* release() __STL_NOTHROW {
  58.     _T* __tmp = _M_ptr;
  59.     _M_ptr = 0;
  60.     return __tmp;
  61.   }
  62.   void reset(_T* __p = 0) __STL_NOTHROW {
  63.     delete _M_ptr;
  64.     _M_ptr = __p;
  65.   }
  66.   // According to the C++ standard, these conversions are required.  Most
  67.   // present-day compilers, however, do not enforce that requirement---and, 
  68.   // in fact, most present-day compilers do not support the language 
  69.   // features that these conversions rely on.
  70.   
  71. #ifdef __SGI_STL_USE_AUTO_PTR_CONVERSIONS
  72. private:
  73.   template<class _T1> struct auto_ptr_ref {
  74.     _T1* _M_ptr;
  75.     auto_ptr_ref(_T1* __p) : _M_ptr(__p) {}
  76.   };
  77. public:
  78.   auto_ptr(auto_ptr_ref<_T> __ref) __STL_NOTHROW
  79.     : _M_ptr(__ref._M_ptr) {}
  80.   template <class _T1> operator auto_ptr_ref<_T1>() __STL_NOTHROW 
  81.     { return auto_ptr_ref<_T>(this.release()); }
  82.   template <class _T1> operator auto_ptr<_T1>() __STL_NOTHROW
  83.     { return auto_ptr<_T1>(this->release()) }
  84. #endif /* __SGI_STL_USE_AUTO_PTR_CONVERSIONS */
  85. };
  86. __STL_END_NAMESPACE
  87. #endif /* member templates */
  88. #endif /* __SGI_STL_MEMORY */
  89. // Local Variables:
  90. // mode:C++
  91. // End: