Merge pull request #2301 from sonndinh/remove-dup-reactor-functions
[ACE_TAO.git] / TAO / tests / Bug_3276_Regression / test_i.cpp
blobd441b746be487ebb4ce99fcd80d43bf009bdb3a3
1 #include "test_i.h"
3 Simple_Server_i::Simple_Server_i (CORBA::ORB_ptr orb)
4 : orb_ (CORBA::ORB::_duplicate (orb))
8 void
9 Simple_Server_i::remote_call ()
11 ACE_DEBUG ((LM_DEBUG,
12 "Print out from process id (%P) hosting the servant\n"));
15 void
16 Simple_Server_i::shutdown ()
18 ACE_DEBUG ((LM_DEBUG,
19 "Servant in process id (%P) received shutdown request. Complying...\n"));
20 this->orb_->shutdown (false);