X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/b0ec002323e2a8b17fe2a9eb13db97d7ca8c1471..cbabf356ce00eb70f677e8483f54062805730e14:/interface/wx/stopwatch.h?ds=inline diff --git a/interface/wx/stopwatch.h b/interface/wx/stopwatch.h index d10bbbe0a4..096bd36ca6 100644 --- a/interface/wx/stopwatch.h +++ b/interface/wx/stopwatch.h @@ -2,7 +2,6 @@ // Name: stopwatch.h // Purpose: interface of wxStopWatch // Author: wxWidgets team -// RCS-ID: $Id$ // Licence: wxWindows licence ///////////////////////////////////////////////////////////////////////////// @@ -61,6 +60,10 @@ public: /** (Re)starts the stop watch with a given initial value. + + The stopwatch will always be running after calling Start(), even if + Pause() had been called before and even if it had been called multiple + times. */ void Start(long milliseconds = 0); @@ -84,41 +87,3 @@ public: wxLongLong TimeInMicro() const; }; - - -// ============================================================================ -// Global functions/macros -// ============================================================================ - -/** @addtogroup group_funcmacro_time */ -//@{ - -/** - Returns the number of seconds since local time 00:00:00 Jan 1st 1970. - - @see wxDateTime::Now() - - @header{wx/stopwatch.h} -*/ -long wxGetLocalTime(); - -/** - Returns the number of milliseconds since local time 00:00:00 Jan 1st 1970. - - @see wxDateTime::Now(), wxLongLong - - @header{wx/stopwatch.h} -*/ -wxLongLong wxGetLocalTimeMillis(); - -/** - Returns the number of seconds since GMT 00:00:00 Jan 1st 1970. - - @see wxDateTime::Now() - - @header{wx/stopwatch.h} -*/ -long wxGetUTCTime(); - -//@} -