More tests update
[ACE_TAO.git] / TAO / tests / Bug_3479_Regression / Hello.cpp
blob9eb011eec14aa7af3e90c57651c2fba238f9167d
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 (0);