blob: 8ca5552d4c327fab2755e3fec35ee7047d9dbe52 (
plain)
| 1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
 | #ifndef	globaltimer_h
#define	globaltimer_h
#include	"config.h"
#include	"alarm.h"
///////////////////////////////////////////////////////////////////////////
//
//  This is the global timer used to terminate maildrop
//
///////////////////////////////////////////////////////////////////////////
class GlobalTimer: public Alarm {
	void	handler();
public:
	GlobalTimer();
	~GlobalTimer();
} ;
#endif
 |