summaryrefslogtreecommitdiff
path: root/examples/Service_Configurator/Misc/Timer_Service.h
blob: 506b4634a71c56ee4537da300fa1dd2605663a16 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
/* -*- C++ -*- */
// $Id$

#include "ace/Service_Config.h"

class Timer_Service : public ACE_Service_Object
{
public:
  virtual int init (int argc, char *argv[]);
  
  virtual int handle_timeout (const ACE_Time_Value &,
			      const void *);
};

ACE_STATIC_SVC_DECLARE (Timer_Service)