Merge pull request #1815 from sonndinh/get_signal_info
[ACE_TAO.git] / TAO / tests / Bug_3746_Regression / Test_i.cpp
blobd7b45432f6a537e9e5200868f4d720fdc67d055a
1 #include "Test_i.h"
3 BoundSequences::BoundSequences (CORBA::ORB_ptr orb)
4 : orb_ (CORBA::ORB::_duplicate (orb))
8 ::CORBA::ULong BoundSequences::SendSequenceOf10Long (const ::CORBA::ULong LengthSent, const ::Test::BoundSequences::SequenceOf10Long &inSeq)
10 ACE_DEBUG ((LM_DEBUG,
11 "Server - BoundSequences::SendSequenceOf10Long (%u, length(%u)) is %C\n",
12 LengthSent, inSeq.length(),
13 ((LengthSent == inSeq.length())? "Correct" : "**** Incorrect ****")));
14 return inSeq.length();
17 void
18 BoundSequences::shutdown (void)
20 this->orb_->shutdown (0);