Revert "Use a variable on the stack to not have a temporary in the call"
[ACE_TAO.git] / TAO / orbsvcs / tests / Bug_3598b_Regression / Hello.cpp
blob4dc06d51e3451b1713bd18465d7cadc1c8907cf0
1 #include "Hello.h"
4 Hello::Hello (CORBA::ORB_ptr orb)
5 : orb_ (CORBA::ORB::_duplicate (orb))
9 char *
10 Hello::get_string ()
12 return CORBA::string_dup ("Hello there!");
15 void
16 Hello::shutdown ()
18 this->orb_->shutdown (0);