Merge pull request #1844 from jrw972/monterey
[ACE_TAO.git] / TAO / tests / ORB_shutdown / Foo_Bar.cpp
blobec9cc2839da66913d970a7564405593a2994ec8d
1 #include "Foo_Bar.h"
3 Foo_Bar::Foo_Bar (CORBA::ORB_ptr orb)
4 : orb_ (CORBA::ORB::_duplicate (orb))
8 Foo_Bar::~Foo_Bar (void)
10 ACE_DEBUG ((LM_DEBUG,
11 "(%P|%t) Shutting down the ORB again\n"));
13 try
15 this->orb_->shutdown (1);
17 catch (...)
19 // Don't allow exceptions to leave the destructor.