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

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,1997
  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_CONSTRUCT_H
  30. #define __SGI_STL_INTERNAL_CONSTRUCT_H
  31. #include <new.h>
  32. __STL_BEGIN_NAMESPACE
  33. template <class T>
  34. inline void destroy(T* pointer) {
  35.     pointer->~T();
  36. }
  37. template <class T1, class T2>
  38. inline void construct(T1* p, const T2& value) {
  39.   new (p) T1(value);
  40. }
  41. template <class ForwardIterator>
  42. inline void
  43. __destroy_aux(ForwardIterator first, ForwardIterator last, __false_type) {
  44.   for ( ; first < last; ++first)
  45.     destroy(&*first);
  46. }
  47. template <class ForwardIterator> 
  48. inline void __destroy_aux(ForwardIterator, ForwardIterator, __true_type) {}
  49. template <class ForwardIterator, class T>
  50. inline void __destroy(ForwardIterator first, ForwardIterator last, T*) {
  51.   typedef typename __type_traits<T>::has_trivial_destructor trivial_destructor;
  52.   __destroy_aux(first, last, trivial_destructor());
  53. }
  54. template <class ForwardIterator>
  55. inline void destroy(ForwardIterator first, ForwardIterator last) {
  56.   __destroy(first, last, value_type(first));
  57. }
  58. inline void destroy(char*, char*) {}
  59. inline void destroy(wchar_t*, wchar_t*) {}
  60. __STL_END_NAMESPACE
  61. #endif /* __SGI_STL_INTERNAL_CONSTRUCT_H */
  62. // Local Variables:
  63. // mode:C++
  64. // End: