Revert "Minor modernization of DynamicAny code"
[ACE_TAO.git] / TAO / DevGuideExamples / Multithreading / GracefulShutdown / MessengerShutdownTimer.h
blob2d67eb70eef715e993b82a04053f66ac97788bd8
1 /* -*- C++ -*- */
3 #ifndef MESSENGERSHUTDOWNTIMER_H_
4 #define MESSENGERSHUTDOWNTIMER_H_
6 #include "ace/Event_Handler.h"
7 #include "tao/corba.h"
9 class MessengerShutdownTimer : public ACE_Event_Handler
11 public:
12 // Constructor
13 MessengerShutdownTimer (CORBA::ORB_ptr orb);
15 virtual int handle_timeout (
16 const ACE_Time_Value & current_time,
17 const void * act);
19 private:
20 CORBA::ORB_var orb_;
24 #endif /* MESSENGERSHUTDOWNTIMER_H_ */