Revert "Minor modernization of DynamicAny code"
[ACE_TAO.git] / TAO / tests / Bug_3746_Regression / Test_i.cpp
blobe79b7e4871bfc06b03d6a07f2caf6427286991d2
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 ()
20 this->orb_->shutdown (false);