DoAssign( pobj, ptbase );
}
-#ifdef HAVE_DYNAMIC_CAST
+#ifndef wxNO_RTTI
void AssignHelper(T* pobj, wxInt2Type<false>)
{
// A last way to get a trackable pointer
Release();
}
}
-#endif // HAVE_DYNAMIC_CAST
+#endif // RTTI enabled
void AssignCopy(const wxWeakRefImpl& wr)
{
#ifdef USE_ONLY_STATIC_WEAKREF
wxWeakRefStatic<T>
#else
- wxWeakRefImpl<T, wxIsStaticTrackable<T>::value>
+ wxWeakRefImpl<T, wxIsStaticTrackable<T>::value != 0>
#endif
{
public:
+ typedef T element_type;
+
// Default ctor
wxWeakRef() { }
+ // Enabling this ctor for VC6 results in mysterious compilation failures in
+ // wx/window.h when assigning wxWindow pointers (FIXME-VC6)
+#ifndef __VISUALC6__
+ // Ctor from the object of this type: this is needed as the template ctor
+ // below is not used by at least g++4 when a literal NULL is used
+ wxWeakRef(T *pobj)
+ {
+ Assign(pobj);
+ }
+#endif // !__VISUALC6__
+
// When we have the full type here, static_cast<> will always work
// (or give a straight compiler error).
template <class TDerived>
Assign(wr.get());
}
- template <class TDerived>
- wxWeakRef<T>& operator=(TDerived* pobj)
- {
- this->Assign(pobj);
- return *this;
- }
-
wxWeakRef<T>& operator=(const wxWeakRef<T>& wr)
{
AssignCopy(wr);
};
-#ifdef HAVE_DYNAMIC_CAST
+#ifndef wxNO_RTTI
// Weak ref implementation assign objects are queried for wxTrackable
// using dynamic_cast<>
T *m_pobj;
};
-#endif // #ifdef HAVE_DYNAMIC_CAST
+#endif // RTTI enabled
// Provide some basic types of weak references