#include <alsatimer.h>
Public Member Functions | |
virtual | ~TimerEventHandler () |
Destructor. | |
virtual void | handleTimerEvent (int ticks, int msecs)=0 |
Timer event handler. |
This abstract class is used to define an interface that other class can implement to receive timer events.
Definition at line 249 of file alsatimer.h.
virtual ~TimerEventHandler | ( | ) | [inline, virtual] |
virtual void handleTimerEvent | ( | int | ticks, | |
int | msecs | |||
) | [pure virtual] |
Timer event handler.
This method is called when the timer expires.
ticks | The time in ticks. | |
msecs | The time in milliseconds. |
Referenced by Timer::doEvents().