Merge pull request #1844 from jrw972/monterey
[ACE_TAO.git] / TAO / tests / Portable_Interceptors / ORB_Shutdown / test_i.cpp
blob3fc798684a30dff00dd122e6cb66b600fbf9487f
1 #include "test_i.h"
3 test_i::test_i (CORBA::ORB_ptr orb)
4 : orb_ (CORBA::ORB::_duplicate (orb))
8 test_i::~test_i (void)
12 void
13 test_i::hello (void)
15 ACE_DEBUG ((LM_DEBUG, "Hello!\n"));
18 void
19 test_i::shutdown (void)
21 ACE_DEBUG ((LM_DEBUG,
22 "Shutting down ORB.\n"));
24 this->orb_->shutdown (0);