]> git.saurik.com Git - wxWidgets.git/blame_incremental - docs/latex/wx/scpdptr.tex
wxMGL compilation fixes
[wxWidgets.git] / docs / latex / wx / scpdptr.tex
... / ...
CommitLineData
1\section{\class{wxScopedPtr}}\label{wxscopedptr}
2
3This is a simple scoped smart pointer implementation that is similar to
4the \urlref{Boost}{http://www.boost.org/} smart pointers but rewritten to
5use macros instead.
6
7A smart pointer holds a pointer to an object. The memory used by the object is
8deleted when the smart pointer goes out of scope. This class is different from
9the \texttt{std::auto\_ptr<>} in so far as it doesn't provide copy constructor
10nor assignment operator. This limits what you can do with it but is much less
11surprizing than the ``destructive copy'' behaviour of the standard class.
12
13\wxheading{Example}
14
15Below is an example of using a wxWindows scoped smart pointer and
16pointer array.
17
18\begin{verbatim}
19 class MyClass { /* ... */ };
20
21 // declare a smart pointer to a MyClass called wxMyClassPtr
22 wxDECLARE_SCOPED_PTR(MyClass, wxMyClassPtr)
23 // declare a smart pointer to an array of chars
24 wxDECLARE_SCOPED_ARRAY(char, wxCharArray)
25
26 ...
27
28 // define the first pointer class, must be complete
29 wxDEFINE_SCOPED_PTR(MyClass, wxMyClassPtr)
30 // define the second pointer class
31 wxDEFINE_SCOPED_ARRAY(char, wxCharArray)
32
33 // create an object with a new pointer to MyClass
34 wxMyClassPtr theObj(new MyClass());
35 // reset the pointer (deletes the previous one)
36 theObj.reset(new MyClass());
37
38 // access the pointer
39 theObj->MyFunc();
40
41 // create an object with a new array of chars
42 wxCharArray theCharObj(new char[100]);
43
44 // access the array
45 theCharObj[0] = "!";
46\end{verbatim}
47
48\wxheading{Declaring new smart pointer types}
49
50To declare the smart pointer class \texttt{CLASSNAME} containing pointes to a
51(possibly incomplete) type \texttt{TYPE} you should use
52\begin{verbatim}
53 wxDECLARE_SCOPED_PTR( TYPE, // type of the values
54 CLASSNAME ); // name of the class
55\end{verbatim}
56
57And later, when \texttt{TYPE} is fully defined, you must also use
58\begin{verbatim}
59 wxDEFINE_SCOPED_PTR( TYPE, CLASSNAME );
60\end{verbatim}
61to implement the scoped pointer class.
62
63The first argument of these macro is the pointer type, the second is the name
64of the new smart pointer class being created. Below we will use wxScopedPtr to
65represent the scoped pointer class, but the user may create the class with any
66legal name.
67
68Alternatively, if you don't have to separate the point of declaration and
69definition of this class and if you accept the standard naming convention, that
70is that the scoped pointer for the class \texttt{Foo} is called
71\texttt{FooPtr}, you can use a single macro which replaces two macros above:
72\begin{verbatim}
73 wxDEFINE_SCOPED_PTR_TYPE( TYPE );
74\end{verbatim}
75Once again, in this cass \texttt{CLASSNAME} will be \texttt{TYPEPtr}.
76
77\wxheading{Include files}
78
79<wx/ptr\_scpd.h>
80
81\wxheading{See also}
82
83\helpref{wxScopedArray}{wxscopedarray}\rtfsp
84
85\latexignore{\rtfignore{\wxheading{Members}}}
86
87\membersection{wxScopedPtr::wxScopedPtr}
88
89\func{}{explicit wxScopedPtr}{\param{type}{ * T = NULL}}
90
91Creates the smart pointer with the given pointer or none if {\tt NULL}. On
92compilers that support it, this uses the explicit keyword.
93
94
95\membersection{wxScopedPtr::\destruct{wxScopedPtr}
96
97\func{}{\destruct{wxScopedPtr}}{\void}
98
99Destructor frees the pointer help by this object if it is not {\t NULL}.
100
101
102\membersection{wxScopedPtr::release}
103
104\func{T *}{release}{\void}
105
106Returns the currently hold pointer and resets the smart pointer object to
107{\tt NULL}. After a call to this function the caller is responsible for
108deleting the pointer.
109
110
111\membersection{wxScopedPtr::reset}
112
113\func{\void}{reset}{\param{T}{ p * = NULL}}
114
115Deletes the currently held pointer and sets it to {\it p} or to NULL if no
116arguments are specified. This function does check to make sure that the
117pointer you are assigning is not the same pointer that is already stored.
118
119
120\membersection{wxScopedPtr::operator *}
121
122\func{const T\&}{operator *}{\void}
123
124This operator works like the standard C++ pointer operator to return the object
125being pointed to by the pointer. If the pointer is NULL or invalid this will
126crash.
127
128
129\membersection{wxScopedPtr::operator -$>$} % TODO
130
131\func{const T*}{operator -$>$}{\void} % TODO
132
133This operator works like the standard C++ pointer operator to return the pointer
134in the smart pointer or NULL if it is empty.
135
136
137\membersection{wxScopedPtr::get}
138
139\func{const T*}{get}{\void}
140
141This operator gets the pointer stored in the smart pointer or returns NULL if
142there is none.
143
144
145\membersection{wxScopedPtr::swap}
146
147\func{\void}{swap}{\param{wxScopedPtr}{ \& other}}
148
149Swap the pointer inside the smart pointer with {\it other}. The pointer being
150swapped must be of the same type (hence the same class name).
151
152
153
154
155%%%%%%% wxScopedTiedPtr %%%%%%%
156\section{\class{wxScopedTiedPtr}}\label{wxscopedtiedptr}
157
158This is a variation on the topic of \helpref{wxScopedPtr}{wxscopedptr}. This
159class is also a smart pointer but in addition it ``ties'' the pointer value to
160another variable. In other words, during the life time of this class the value
161of that variable is set to be the same as the value of the pointer itself and
162it is reset to its old value when the object is destroyed. This class is
163especially useful when converting the existing code (which may already store
164the pointers value in some variable) to the smart pointers.
165
166\wxheading{Example}
167
168\wxheading{Derives from}
169
170\helpref{wxScopedPtr}{wxscopedptr}
171
172\wxheading{Include files}
173
174<wx/ptr\_scpd.h>
175
176\latexignore{\rtfignore{\wxheading{Members}}}
177
178\membersection{wxScopedTiedPtr::wxScopedTiedPtr}\label{wxscopedtiedptrctor}
179
180\func{}{wxScopedTiedPtr}{\param{T **}{ppTie}, \param{T *}{ptr}}
181
182Constructor creates a smart pointer initialized with \arg{ptr} and stores
183\arg{ptr} in the location specified by \arg{ppTie} which must not be
184{\tt NULL}.
185
186\membersection{wxScopedTiedPtr::\destruct{wxScopedTiedPtr}}\label{wxscopedtiedptrdtor}
187
188\func{}{\destruct{wxScopedTiedPtr}}{\void}
189
190Destructor frees the pointer help by this object and restores the value stored
191at the tied location (as specified in the \helpref{constructor}{wxscopedtiedptrctor})
192to the old value.
193
194Warning: this location may now contain an uninitialized value if it hadn't been
195initialized previously, in particular don't count on it magically being
196{\tt NULL}!
197
198