ACE+TAO-7_0_8
[ACE_TAO.git] / TAO / tests / Bug_3479_Regression / Hello.cpp
blob674e81b64e0e573851877d92dab47ad5578786bf
1 #include "Hello.h"
3 Hello::Hello (CORBA::ORB_ptr orb)
4 : orb_ (CORBA::ORB::_duplicate (orb))
8 void
9 Hello::get_string (CORBA::String_out string_out)
11 string_out = CORBA::string_dup ("Hello there!");
14 void
15 Hello::shutdown (void)
17 this->orb_->shutdown (false);