X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/e25cd7750c571191ce69438de5f7c0293d1b5270..97d13342cc2ac77e21c38115cc6ebecac930f92a:/interface/wx/weakref.h diff --git a/interface/wx/weakref.h b/interface/wx/weakref.h index c06a27e111..05a5503fd8 100644 --- a/interface/wx/weakref.h +++ b/interface/wx/weakref.h @@ -8,8 +8,6 @@ /** - @class wxWeakRefDynamic - wxWeakRefDynamic is a template class for weak references that is used in the same way as wxWeakRef. The only difference is that wxWeakRefDynamic defaults to using @c dynamic_cast for establishing the object reference @@ -28,8 +26,11 @@ For API documentation, see: wxWeakRef. + @tparam T + The type to which the smart pointer points to. + @nolibrary - @category{misc} + @category{smartpointers} */ template class wxWeakRefDynamic @@ -41,8 +42,6 @@ public: /** - @class wxWeakRef - wxWeakRef is a template class for weak references to wxWidgets objects, such as wxEvtHandler, wxWindow and wxObject. A weak reference behaves much like an ordinary pointer, but when the object @@ -91,8 +90,11 @@ public: typedef wxWeakRef wxWindowRef; @endcode + @tparam T + The type to which the smart pointer points to. + @nolibrary - @category{misc} + @category{smartpointers} @see wxSharedPtr, wxScopedPtr */