More tests update
[ACE_TAO.git] / TAO / tests / MProfile / test_i.cpp
blob11c2da0f4e53f9ef900af3d89c33a110e79967d9
1 #include "test_i.h"
3 Simple_Server_i::Simple_Server_i (CORBA::ORB_ptr orb)
4 : orb_ (CORBA::ORB::_duplicate (orb)),
5 val_ (1)
9 Simple_Server_i::Simple_Server_i (void)
10 : orb_ (0)
14 CORBA::Long
15 Simple_Server_i::remote_call (void)
17 ACE_DEBUG ((LM_DEBUG,
18 "Print out from process id (%P) hosting the servant\n"));
20 return this->val_++;
24 void
25 Simple_Server_i::shutdown (void)
27 this->orb_->shutdown (0);