Revert "Minor modernization of DynamicAny code"
[ACE_TAO.git] / TAO / tests / Bug_1020_Basic_Regression / Client_Task.cpp
blob50c18856bd1db3f28e3abbc61c280d4422a50901
1 #include "Client_Task.h"
3 Client_Task::Client_Task (CORBA::ORB_ptr orb)
4 : orb_ (CORBA::ORB::_duplicate (orb))
8 int
9 Client_Task::svc ()
11 try
13 this->orb_->run ();
15 catch (const CORBA::Exception&)
17 return -1;
20 return 0;