]> git.saurik.com Git - wxWidgets.git/blobdiff - include/wx/msw/timer.h
added AccessMode parameter to wxRegKey
[wxWidgets.git] / include / wx / msw / timer.h
index 308257acba781bfb7ff4b350c1470f329b8d15ce..9ecd87327cb494812e703eb566030c684818144e 100644 (file)
@@ -12,7 +12,7 @@
 #ifndef _WX_TIMER_H_
 #define _WX_TIMER_H_
 
-#ifdef __GNUG__
+#if defined(__GNUG__) && !defined(NO_GCC_PRAGMA)
     #pragma interface "timer.h"
 #endif
 
@@ -21,7 +21,9 @@ class WXDLLEXPORT wxTimer : public wxTimerBase
 friend void wxProcessTimer(wxTimer& timer);
 
 public:
-    wxTimer();
+    wxTimer() { Init(); }
+    wxTimer(wxEvtHandler *owner, int id = -1) : wxTimerBase(owner, id)
+        { Init(); }
     ~wxTimer();
 
     virtual bool Start(int milliseconds = -1, bool oneShot = FALSE);
@@ -30,10 +32,12 @@ public:
     virtual bool IsRunning() const { return m_id != 0; }
 
 protected:
-    long m_id;
+    void Init();
+
+    unsigned long m_id;
 
 private:
-    DECLARE_ABSTRACT_CLASS(wxTimer)
+    DECLARE_DYNAMIC_CLASS_NO_COPY(wxTimer)
 };
 
 #endif