Garmin Fleet Management Controller  2.19.0
TimerListener.h
Go to the documentation of this file.
1 /*********************************************************************
2 *
3 * HEADER NAME:
4 * TimerListener.h
5 *
6 * Copyright 2008-2009 by Garmin Ltd. or its subsidiaries.
7 *---------------------------------------------------------------------
8 * $NoKeywords$
9 *********************************************************************/
10 #ifndef TimerListener_H
11 #define TimerListener_H
12 
13 //----------------------------------------------------------------------
20 //----------------------------------------------------------------------
22 {
23 public:
24  TimerListener();
25  virtual ~TimerListener();
26 
29  virtual void onTimer() = 0;
30 
31 protected:
32 
33 private:
34 
35 };
36 
37 #endif
virtual ~TimerListener()
virtual void onTimer()=0
Periodic callback.
Abstract base class for objects that need to do something periodically.
Definition: TimerListener.h:21