Merge pull request #1844 from jrw972/monterey
[ACE_TAO.git] / TAO / orbsvcs / tests / Bug_2800_Regression / Hello.cpp
blobec539001733d77d3519a8c2acfc242c4d4df9c19
1 #include "Hello.h"
5 Hello::Hello (CORBA::ORB_ptr orb)
6 : orb_ (CORBA::ORB::_duplicate (orb))
10 char *
11 Hello::get_string (void)
13 return CORBA::string_dup ("Hello there!");
16 void
17 Hello::shutdown (void)
19 this->orb_->shutdown (0);