]> git.saurik.com Git - wxWidgets.git/blobdiff - include/wx/msw/ole/oleutils.h
made wxFrame::SendSizeEvent() public and documented it
[wxWidgets.git] / include / wx / msw / ole / oleutils.h
index 1d19f4f763cc010e23a8456546334e470f73f2df..a628ee50a4f1eafb1caa1432fa0ff5a3c7048e9c 100644 (file)
@@ -74,6 +74,12 @@ public:
 
     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;