00001 #include "tao/Utils/ORB_Destroyer.h" 00002 00003 00004 ACE_RCSID (Utils, 00005 ORB_Destroyer, 00006 "$Id: ORB_Destroyer.cpp 77151 2007-02-15 13:24:41Z johnnyw $") 00007 00008 TAO_BEGIN_VERSIONED_NAMESPACE_DECL 00009 00010 void 00011 TAO::Utils::ORB_Destroyer_Functor::operator() (CORBA::ORB_ptr orb) throw () 00012 { 00013 try 00014 { 00015 orb->destroy (); 00016 } 00017 catch (...) 00018 { 00019 // @@ Cannot let exceptions escape, yet we need to log them! 00020 } 00021 } 00022 00023 TAO_END_VERSIONED_NAMESPACE_DECL