]> git.saurik.com Git - wxWidgets.git/blobdiff - include/wx/timer.h
operator >> wxString eat word by default. \n Add wxTextInputStream::Get/SetStringSepa...
[wxWidgets.git] / include / wx / timer.h
index 0b86490de622ec5674f5e44ab9ea31603bd9700c..1dbea0030e73c5798cae26d7f94df2802ee8875d 100644 (file)
 #include "wx/stubs/timer.h"
 #endif
 
+class WXDLLEXPORT wxChrono
+{
+public: 
+  wxChrono();
+  
+  void Start(long t=0);
+  void Pause();
+  void Resume();
+
+  long Time();
+
+private:
+  long m_t0;
+  long m_pause;
+};
+
+// 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();
+
+// Get number of milliseconds since 00:00:00 GMT, Jan 1st 1970.
+long WXDLLEXPORT wxGetCurrentMTime();
+
 #endif
     // _WX_TIMER_H_BASE_