Merge pull request #1844 from jrw972/monterey
[ACE_TAO.git] / TAO / tests / Bug_3276_Regression / test_i.cpp
blob4b0a86e93828fc3f0aef945433aee5bebe50ed06
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 (0);