More tests update
[ACE_TAO.git] / TAO / tests / Bug_3471_Regression / Hello.cpp
blob8784e87fb10b7e0927dce90e25de16b77bbb0710
1 #include "Hello.h"
3 Hello::Hello (CORBA::ORB_ptr orb)
4 : orb_ (CORBA::ORB::_duplicate (orb))
8 Test::ObjectSeq*
9 Hello::get_objects (void)
11 Test::ObjectSeq_var my_seq = new Test::ObjectSeq (1);
12 my_seq->length (1);
14 (*my_seq)[0] = CORBA::Object::_duplicate (CORBA::Object::_nil ());
15 return my_seq._retn ();
18 void
19 Hello::shutdown (void)
21 this->orb_->shutdown (0);