Merge pull request #1844 from jrw972/monterey
[ACE_TAO.git] / TAO / tests / Bug_2595_Regression / Hello.cpp
blobefa87b0a8e4f555b8d53833a49bdb979195b56a3
1 #include "Hello.h"
3 Hello::Hello (CORBA::ORB_ptr orb)
4 : orb_ (CORBA::ORB::_duplicate (orb))
8 void
9 Hello::op (
10 ::Test::Fls_out fstruct,
11 ::Test::Vls_out vstruct
14 Test::Fls a = {5, 1.0};
15 fstruct = a;
16 vstruct = new Test::Vls;
19 void
20 Hello::shutdown (void)
22 this->orb_->shutdown (0);