Merge pull request #2309 from mitza-oci/warnings
[ACE_TAO.git] / TAO / tests / Bug_3471_Regression / Hello.cpp
blob1a29e8a8844fab41ebd77b4f52cf0c649f4ea5f9
1 #include "Hello.h"
3 Hello::Hello (CORBA::ORB_ptr orb)
4 : orb_ (CORBA::ORB::_duplicate (orb))
8 Test::ObjectSeq*
9 Hello::get_objects ()
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 ()
21 this->orb_->shutdown (false);