Changeset 393 for Common/StopWatch.pas
- Timestamp:
- Jul 26, 2012, 1:15:17 PM (12 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
Common/StopWatch.pas
r390 r393 22 22 function GetElapsed: string; 23 23 public 24 constructor Create(const startOnCreate : Boolean = False) ;24 constructor Create(const startOnCreate : Boolean = False) ; 25 25 procedure Start; 26 26 procedure Stop; 27 property IsHighResolution : Boolean read fIsHighResolution;28 property ElapsedTicks : TLargeInteger read GetElapsedTicks;29 property ElapsedMiliseconds : TLargeInteger read GetElapsedMiliseconds;30 property Elapsed : string read GetElapsed;31 property IsRunning : Boolean read fIsRunning;27 property IsHighResolution : Boolean read fIsHighResolution; 28 property ElapsedTicks : TLargeInteger read GetElapsedTicks; 29 property ElapsedMiliseconds : TLargeInteger read GetElapsedMiliseconds; 30 property Elapsed : string read GetElapsed; 31 property IsRunning : Boolean read fIsRunning; 32 32 end; 33 33
Note:
See TracChangeset
for help on using the changeset viewer.