]>
git.saurik.com Git - wxWidgets.git/blob - include/wx/scopedptr.h
1 /////////////////////////////////////////////////////////////////////////////
2 // Name: wx/scopedptr.h
3 // Purpose: scoped smart pointer class
4 // Author: Jesse Lovelace <jllovela@eos.ncsu.edu>
7 // Copyright: (c) Jesse Lovelace and original Boost authors (see below)
8 // (c) 2009 Vadim Zeitlin
9 // Licence: wxWindows licence
10 /////////////////////////////////////////////////////////////////////////////
12 // This class closely follows the implementation of the boost
13 // library scoped_ptr and is an adaption for c++ macro's in
14 // the wxWidgets project. The original authors of the boost
15 // scoped_ptr are given below with their respective copyrights.
17 // (C) Copyright Greg Colvin and Beman Dawes 1998, 1999.
18 // Copyright (c) 2001, 2002 Peter Dimov
20 // Permission to copy, use, modify, sell and distribute this software
21 // is granted provided this copyright notice appears in all copies.
22 // This software is provided "as is" without express or implied
23 // warranty, and with no claim as to its suitability for any purpose.
25 // See http://www.boost.org/libs/smart_ptr/scoped_ptr.htm for documentation.
28 #ifndef _WX_SCOPED_PTR_H_
29 #define _WX_SCOPED_PTR_H_
32 #include "wx/checkeddelete.h"
34 // ----------------------------------------------------------------------------
35 // wxScopedPtr: A scoped pointer
36 // ----------------------------------------------------------------------------
42 typedef T element_type
;
44 wxEXPLICIT
wxScopedPtr(T
* ptr
= NULL
) : m_ptr(ptr
) { }
46 ~wxScopedPtr() { wxCHECKED_DELETE(m_ptr
); }
48 // test for pointer validity: defining conversion to unspecified_bool_type
49 // and not more obvious bool to avoid implicit conversions to integer types
51 // this compiler is too dumb to use unspecified_bool_type operator in tests
52 // of the form "if ( !ptr )"
53 typedef bool unspecified_bool_type
;
55 typedef T
*(wxScopedPtr
<T
>::*unspecified_bool_type
)() const;
56 #endif // __BORLANDC__
57 operator unspecified_bool_type() const
59 return m_ptr
? &wxScopedPtr
<T
>::get
: NULL
;
62 void reset(T
* ptr
= NULL
)
66 wxCHECKED_DELETE(m_ptr
);
80 wxASSERT(m_ptr
!= NULL
);
84 T
* operator->() const
86 wxASSERT(m_ptr
!= NULL
);
95 void swap(wxScopedPtr
& other
)
97 T
* const tmp
= other
.m_ptr
;
105 DECLARE_NO_COPY_TEMPLATE_CLASS(wxScopedPtr
, T
)
108 // ----------------------------------------------------------------------------
109 // old macro based implementation
110 // ----------------------------------------------------------------------------
112 /* The type being used *must* be complete at the time
113 that wxDEFINE_SCOPED_* is called or a compiler error will result.
114 This is because the class checks for the completeness of the type
117 #define wxDECLARE_SCOPED_PTR(T, name) \
123 name(name const &); \
124 name & operator=(name const &); \
127 wxEXPLICIT name(T * ptr = NULL) \
132 void reset(T * ptr = NULL); \
141 T & operator*() const \
143 wxASSERT(m_ptr != NULL); \
147 T * operator->() const \
149 wxASSERT(m_ptr != NULL); \
158 void swap(name & ot) \
160 T * tmp = ot.m_ptr; \
166 #define wxDEFINE_SCOPED_PTR(T, name)\
167 void name::reset(T * ptr) \
171 wxCHECKED_DELETE(m_ptr); \
177 wxCHECKED_DELETE(m_ptr); \
180 // this macro can be used for the most common case when you want to declare and
181 // define the scoped pointer at the same time and want to use the standard
182 // naming convention: auto pointer to Foo is called FooPtr
183 #define wxDEFINE_SCOPED_PTR_TYPE(T) \
184 wxDECLARE_SCOPED_PTR(T, T ## Ptr) \
185 wxDEFINE_SCOPED_PTR(T, T ## Ptr)
187 // ----------------------------------------------------------------------------
188 // "Tied" scoped pointer: same as normal one but also sets the value of
189 // some other variable to the pointer value
190 // ----------------------------------------------------------------------------
192 #define wxDEFINE_TIED_SCOPED_PTR_TYPE(T) \
193 wxDEFINE_SCOPED_PTR_TYPE(T) \
194 class T ## TiedPtr : public T ## Ptr \
197 T ## TiedPtr(T **pp, T *p) \
198 : T ## Ptr(p), m_pp(pp) \
214 #endif // _WX_SCOPED_PTR_H_