| [Overview][Types][Classes][Variables][Index] | 
[Properties (by Name)] [Methods (by Name)] [Events (by Name)]
Abstract driver class
Source position: fptimer.pp line 71
type TFPTimerDriver = class(TObject) end;  | 
||
public  | 
||
constructor Create(); virtual;  | 
  | 
Create new driver instance  | 
procedure StartTimer; virtual; abstract;  | 
  | 
Start the timer  | 
procedure StopTimer; virtual; abstract;  | 
  | 
Stop the timer  | 
property Timer: TFPCustomTimer; [r]  | 
  | 
Timer tick  | 
  | 
Abstract driver class  | 
|
| | | ||
TFPTimerDriver is the abstract timer driver class: it simply provides an interface for the TFPCustomTimer class to use.
The fpTimer unit implements a descendent of this class which implements the default timer mechanism.
  | 
Custom timer class  | 
|
  | 
Actual timer class to be used  |