Merge pull request #1844 from jrw972/monterey
[ACE_TAO.git] / TAO / tests / Big_Reply / Big_Reply_i.cpp
blob957614f04d6b906cd950f166d2e9e5d2fb323977
1 #include "Big_Reply_i.h"
3 Big_Reply_i::Big_Reply_i (CORBA::ORB_ptr orb,
4 CORBA::ULong len)
5 : orb_ (orb),
6 length_ (len)
10 Big_Reply_i::~Big_Reply_i (void)
14 Test::Octet_Seq *
15 Big_Reply_i::get_big_reply ( /**/)
17 Test::Octet_Seq_var reply_mesg =
18 new Test::Octet_Seq (this->length_);
20 reply_mesg->length (this->length_);
22 return reply_mesg._retn ();
25 void
26 Big_Reply_i::ping ( /**/)
30 void
31 Big_Reply_i::shutdown ( /**/)
33 this->orb_->shutdown ();