Merge pull request #1844 from jrw972/monterey
[ACE_TAO.git] / TAO / tests / Any / Recursive / Hello.cpp
blobb28f967a2616282de7fa5d61eb8b1e94daa70b52
1 #include "Hello.h"
3 Hello::Hello (CORBA::ORB_ptr orb)
4 : orb_ (CORBA::ORB::_duplicate (orb))
8 CORBA::Any *
9 Hello::get_any (CORBA::Any const & the_any)
11 CORBA::Any * retval = 0;
13 ACE_NEW_THROW_EX (retval,
14 CORBA::Any (the_any),
15 CORBA::NO_MEMORY ());
17 return retval;
21 void
22 Hello::shutdown (void)
24 this->orb_->shutdown (0);