Merge pull request #1844 from jrw972/monterey
[ACE_TAO.git] / TAO / orbsvcs / performance-tests / RTEvent / lib / EC_Destroyer.cpp
blob08b2b33d1b0f0f809633ed3a65ee1c89cd66e14f
1 /**
2 * @file EC_Destroyer.cpp
4 * @author Carlos O'Ryan <coryan@uci.edu>
5 */
7 #include "EC_Destroyer.h"
9 EC_Destroyer::EC_Destroyer (RtecEventChannelAdmin::EventChannel_ptr ec)
10 : ec_ (RtecEventChannelAdmin::EventChannel::_duplicate (ec))
14 EC_Destroyer::~EC_Destroyer (void)
16 try{
17 this->ec_->destroy ();
18 } catch (const CORBA::Exception&) {
19 // @@ TODO Log this event, check the Servant_var.cpp comments for
20 // details.