/** * @file ORB_Task.cpp * * $Id$ * * @author Carlos O'Ryan * */ #include "ORB_Task.h" #include "tao/Environment.h" ACE_RCSID(Bug_1230_Regression, ORB_Task, "$Id$") ORB_Task::ORB_Task(CORBA::ORB_ptr orb) : orb_(CORBA::ORB::_duplicate(orb)) { } int ORB_Task::svc (void) { try { this->orb_->run(); } catch (const CORBA::Exception& ) { } return 0; }