git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@61031
c3d73ce0-8a6f-49c7-b76d-
6d57e0e08775
class WXDLLIMPEXP_BASE wxObjectRefData
{
class WXDLLIMPEXP_BASE wxObjectRefData
{
- friend class WXDLLIMPEXP_FWD_BASE wxObject;
-
- wxObjectRefData(int refCount = 1) : m_count(refCount) { }
+ wxObjectRefData() { m_count = 1; }
int GetRefCount() const { return m_count; }
int GetRefCount() const { return m_count; }
private:
// our refcount:
int m_count;
private:
// our refcount:
int m_count;
+
+ friend class WXDLLIMPEXP_FWD_BASE wxObject;
};
// ----------------------------------------------------------------------------
};
// ----------------------------------------------------------------------------