Merge pull request #1844 from jrw972/monterey
[ACE_TAO.git] / TAO / tests / Multiple_Retry_Tests / Retry_On_Connection_Failure / Hello.cpp
blob4deb6598d9c34642c6fcea7b41e80565027c6132
1 #include "Hello.h"
2 #include <iostream>
4 Hello::Hello (CORBA::ORB_ptr orb)
5 : orb_ (CORBA::ORB::_duplicate (orb))
9 char *
10 Hello::get_string (void)
12 return CORBA::string_dup ("Hello there!");
15 void
16 Hello::set_string (const char * s)
18 std::cout << "Call to Hello::set_string (" << s << ")" << std::endl;
21 void
22 Hello::shutdown (void)
24 this->orb_->shutdown (0);