Merge pull request #2301 from sonndinh/remove-dup-reactor-functions
[ACE_TAO.git] / TAO / tests / Bug_1254_Regression / BlobServer.cpp
blob990c6dd42d71db74a99f5d7a00585c824a3fab50
1 #include "BlobServer.h"
3 BlobServerImpl::BlobServerImpl (CORBA::ORB_ptr orb)
4 : orb_ (CORBA::ORB::_duplicate (orb))
8 /// Implement the BlobServer interface
9 void
10 BlobServerImpl::test(
11 BlobType1& blob1,
12 BlobType2& blob2
15 blob1.length(10);
16 for(int i = 0; i < 10; i++)
18 blob1[i] = 'A' + i;
21 blob2.length(10);
22 for(int i = 0; i < 10; i++)
24 blob2[i] = 'A' + i;
28 void
29 BlobServerImpl::shutdown ()
31 this->orb_->shutdown (false);