git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@16265
c3d73ce0-8a6f-49c7-b76d-
6d57e0e08775
operator ULONG&() { return m_Value; }
ULONG& operator=(ULONG value) { return m_Value = value; }
+
+ wxAutoULong& operator++() { ++m_Value; return *this; }
+ const wxAutoULong operator++( int ) { wxAutoULong temp = *this; ++m_Value; return temp; }
+
+ wxAutoULong& operator--() { --m_Value; return *this; }
+ const wxAutoULong operator--( int ) { wxAutoULong temp = *this; --m_Value; return temp; }
private:
ULONG m_Value;