Revert "Minor modernization of DynamicAny code"
[ACE_TAO.git] / TAO / tests / Bug_2966_Regression / Hello.cpp
blob6d827808c887e5d62d91d0c9d6298493cd8f9c02
1 // -*- C++ -*-
2 #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 (false);