Merge pull request #1844 from jrw972/monterey
[ACE_TAO.git] / TAO / tests / DLL_ORB / Test_i.cpp
blob88e93855c0d7e984381152fae3d440171ad2bd9d
1 // -*- C++ -*-
2 #include "Test_i.h"
4 Test_i::Test_i (void)
5 : orb_ ()
9 void
10 Test_i::invoke_me ( /* */)
12 ACE_DEBUG ((LM_INFO,
13 "(%P|%t) Test method invoked.\n"));
16 void
17 Test_i::shutdown (void)
19 ACE_DEBUG ((LM_INFO,
20 "Server is shutting down.\n"));
22 if (!CORBA::is_nil (this->orb_.in ()))
23 this->orb_->shutdown (0);
26 void
27 Test_i::orb (CORBA::ORB_ptr orb)
29 this->orb_ = CORBA::ORB::_duplicate (orb);