Revert "Minor modernization of DynamicAny code"
[ACE_TAO.git] / TAO / DevGuideExamples / Multithreading / GracefulShutdown / MessengerShutdownTimer.cpp
bloba3abf805916ea954f837a36f6beb8d8eaeddd393
1 /* -*- C++ -*- */
3 #include "MessengerShutdownTimer.h"
5 MessengerShutdownTimer::MessengerShutdownTimer (CORBA::ORB_ptr orb)
6 : orb_(CORBA::ORB::_duplicate(orb))
10 int MessengerShutdownTimer::handle_timeout (
11 const ACE_Time_Value &,
12 const void*)
14 ACE_DEBUG((LM_DEBUG, "In MessengerShutdownTimer::handle_timeout\n"));
15 orb_->shutdown (false);
16 return 0;