Revert "Minor modernization of DynamicAny code"
[ACE_TAO.git] / TAO / tests / DLL_ORB / Test_i.cpp
blob61653edb87de2921a08981e54324811ba62c37a7
1 // -*- C++ -*-
2 #include "Test_i.h"
4 Test_i::Test_i ()
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 ()
19 ACE_DEBUG ((LM_INFO,
20 "Server is shutting down.\n"));
22 if (!CORBA::is_nil (this->orb_.in ()))
23 this->orb_->shutdown (false);
26 void
27 Test_i::orb (CORBA::ORB_ptr orb)
29 this->orb_ = CORBA::ORB::_duplicate (orb);