Merge pull request #1844 from jrw972/monterey
[ACE_TAO.git] / TAO / tests / Portable_Interceptors / Bug_2133 / Hello.cpp
blob2e31783440f6d07119e0d20f69f91041f7b986d1
1 #include "Hello.h"
3 Hello::Hello (CORBA::ORB_ptr orb)
4 : orb_ (CORBA::ORB::_duplicate (orb))
8 char *
9 Hello::get_string ()
11 return CORBA::string_dup ("Hello there!");
14 void
15 Hello::shutdown ()
17 this->orb_->shutdown (0 );