wxScopedTiedPtr(T** ppTie, T* ptr);
/**
- Destructor frees the pointer help by this object and restores the value stored
- at the tied location (as specified in the @ref ctor() constructor)
+ Destructor frees the pointer help by this object and restores the value
+ stored at the tied location (as specified in the @ref wxScopedTiedPtr() constructor)
to the old value.
@warning
/**
- A scoped pointer template class. It is the template version of
- the old-style @ref classwx_scoped_ptr "scoped pointer macros".
+ A scoped pointer template class.
+ It is the template version of the old-style @ref wxScopedPtr "scoped pointer macros".
@library{wxbase}
@category{smartpointers}
/**
- @class wxWeakRefDynamic<T>
+ @class wxWeakRefDynamic
wxWeakRefDynamic<T> is a template class for weak references that is used in
the same way as wxWeakRef<T>. The only difference is that wxWeakRefDynamic
For API documentation, see: wxWeakRef<T>.
+ @tparam T
+ @todo docme
+
@nolibrary
@category{misc}
*/
/**
- @class wxWeakRef<T>
+ @class wxWeakRef
wxWeakRef<T> is a template class for weak references to wxWidgets objects,
such as wxEvtHandler, wxWindow and wxObject.
typedef wxWeakRef<wxWindow> wxWindowRef;
@endcode
+ @tparam T
+ @todo docme
+
@nolibrary
@category{misc}