X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/26c66bc6ac1d8be06635ab3bb6831f3de2afbdd3..be8b43858c480325553a66a43c9fcd92d036b885:/include/wx/weakref.h diff --git a/include/wx/weakref.h b/include/wx/weakref.h index af0a6c0817..00e7fa1229 100644 --- a/include/wx/weakref.h +++ b/include/wx/weakref.h @@ -14,15 +14,17 @@ #include "wx/tracker.h" -// Some compilers (VC6, Borland, otehrs?) have problem with template specialization. +// Some compilers (VC6, Borland, g++ < 3.3) have problem with template specialization. // However, this is only used for optimization purposes (a smaller wxWeakRef pointer) -// (and the corner case of wxWeakRef). So for those compilers, we can fall -// back to the non-optimal case, where we use a the same type of weak ref (static one) +// (and the corner case of wxWeakRef). So for those compilers, we can fall +// back to the non-optimal case, where we use a the same type of weak ref (static one) // in all cases. See defs.h for various setting these defines depending on compiler. -#if !defined(HAVE_PARTIAL_SPECIALIZATION) || !defined(HAVE_TEMPLATE_OVERLOAD_RESOLUTION) - #define USE_ONLY_STATIC_WEAKREF -#endif +#if !defined(HAVE_PARTIAL_SPECIALIZATION) || \ + !defined(HAVE_TEMPLATE_OVERLOAD_RESOLUTION) || \ + (defined(__GNUC__) && !wxCHECK_GCC_VERSION(3, 3)) + #define USE_ONLY_STATIC_WEAKREF +#endif #ifndef USE_ONLY_STATIC_WEAKREF @@ -59,6 +61,13 @@ public: } } + virtual void OnObjectDestroy() + { + // Tracked object itself removes us from list of trackers + wxASSERT(m_pobj != NULL); + m_pobj = NULL; + } + protected: void Assign(T* pobj) { @@ -82,13 +91,6 @@ protected: Assign( wr.m_pobj ); } - virtual void OnObjectDestroy() - { - // Tracked object itself removes us from list of trackers - wxASSERT( m_pobj!=NULL ); - m_pobj = NULL; - } - T *m_pobj; }; @@ -122,6 +124,14 @@ struct wxWeakRefImpl : public wxTrackerNode } } + virtual void OnObjectDestroy() + { + // Tracked object itself removes us from list of trackers + wxASSERT(m_pobj != NULL); + m_pobj = NULL; + m_ptbase = NULL; + } + protected: wxWeakRefImpl() : m_pobj(NULL), m_ptbase(NULL) { } @@ -177,14 +187,6 @@ protected: } } - virtual void OnObjectDestroy() - { - // Tracked object itself removes us from list of trackers - wxASSERT( m_pobj!=NULL ); - m_pobj = NULL; - m_ptbase = NULL; - } - T *m_pobj; wxTrackable *m_ptbase; }; @@ -215,17 +217,17 @@ public: Assign(pobj); } - // We need this copy ctor, since otherwise a default compiler (binary) copy + // We need this copy ctor, since otherwise a default compiler (binary) copy // happens (if embedded as an object member). wxWeakRef(const wxWeakRef& wr) { Assign(wr.get()); } - + template wxWeakRef& operator=(TDerived* pobj) { - Assign(pobj); + this->Assign(pobj); return *this; } @@ -265,18 +267,18 @@ public: { Assign(wr.get()); } - + virtual ~wxWeakRefDynamic() { Release(); } // Smart pointer functions T& operator*() const { wxASSERT(m_pobj); return *m_pobj; } T* operator->() const { wxASSERT(m_pobj); return m_pobj; } - + T* get() const { return m_pobj; } operator T* () const { return m_pobj; } T* operator = (T* pobj) { Assign(pobj); return m_pobj; } - + // Assign from another weak ref, point to same object T* operator = (const wxWeakRef &wr) { Assign( wr.get() ); return m_pobj; } @@ -293,6 +295,13 @@ public: } } + virtual void OnObjectDestroy() + { + wxASSERT_MSG(m_pobj, "tracked object should have removed us itself"); + + m_pobj = NULL; + } + protected: void Assign(T *pobj) { @@ -320,13 +329,6 @@ protected: } } - virtual void OnObjectDestroy() - { - wxASSERT_MSG( m_pobj, "tracked object should have removed us itself" ); - - m_pobj = NULL; - } - T *m_pobj; };