]> git.saurik.com Git - wxWidgets.git/blobdiff - include/wx/msw/timer.h
Added missing costructor
[wxWidgets.git] / include / wx / msw / timer.h
index 8ce875f6574e7e2cb7f7de996da76bcaa6a2d8d0..36fc33a1c0f339a7d834da456deb95838be1a9fe 100644 (file)
@@ -6,7 +6,7 @@
 // Created:     01/02/97
 // RCS-ID:      $Id$
 // Copyright:   (c) Julian Smart
-// Licence:    wxWindows licence
+// Licence:     wxWindows licence
 /////////////////////////////////////////////////////////////////////////////
 
 #ifndef _WX_TIMER_H_
@@ -37,9 +37,9 @@ public:
     bool OneShot() const { return oneShot; }
 
 protected:
-    bool oneShot ;
-    int  milli ;
-    int  lastMilli ;
+    bool oneShot;
+    int  milli;
+    int  lastMilli;
 
     long id;
 
@@ -47,16 +47,5 @@ private:
     DECLARE_ABSTRACT_CLASS(wxTimer)
 };
 
-// Timer functions (milliseconds)
-void WXDLLEXPORT wxStartTimer();
-// Gets time since last wxStartTimer or wxGetElapsedTime
-long WXDLLEXPORT wxGetElapsedTime(bool resetTimer = TRUE);
-
-// EXPERIMENTAL: comment this out if it doesn't compile.
-bool WXDLLEXPORT wxGetLocalTime(long *timeZone, int *dstObserved);
-
-// Get number of seconds since 00:00:00 GMT, Jan 1st 1970.
-long WXDLLEXPORT wxGetCurrentTime();
-
 #endif
     // _WX_TIMERH_