Changeset 390 for Common/StopWatch.pas
- Timestamp:
- Jul 18, 2012, 4:13:05 PM (12 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
Common/StopWatch.pas
r358 r390 22 22 function GetElapsed: string; 23 23 public 24 constructor Create(const startOnCreate 24 constructor Create(const startOnCreate: Boolean = False) ; 25 25 procedure Start; 26 26 procedure Stop; 27 property IsHighResolution 28 property ElapsedTicks 29 property ElapsedMiliseconds 30 property Elapsed 31 property IsRunning 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.