Merge pull request #2301 from sonndinh/remove-dup-reactor-functions
[ACE_TAO.git] / TAO / tests / Big_Reply / Big_Reply_i.cpp
blob87529585baf00a9d88a0f3526ffa3ac02a1b80d7
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 ()
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 ();