Revert "Minor modernization of DynamicAny code"
[ACE_TAO.git] / TAO / tests / MProfile / test_i.cpp
blob2004d24f72b399497bba83015bc9a6e3e755459d
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 ()
10 : orb_ (0)
14 CORBA::Long
15 Simple_Server_i::remote_call ()
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 ()
27 this->orb_->shutdown (false);