ACE+TAO-6_5_17
[ACE_TAO.git] / TAO / examples / Buffered_AMI / test_i.cpp
bloba01d94181e4b350a460191c50fb1f3c973867c29
1 #include "test_i.h"
3 test_i::test_i (CORBA::ORB_ptr orb)
4 : orb_ (CORBA::ORB::_duplicate (orb))
8 void
9 test_i::method (CORBA::ULong request_number,
10 CORBA::ULong_out reply_number)
12 ACE_DEBUG ((LM_DEBUG,
13 "server: Iteration %d @ %T\n",
14 request_number));
16 reply_number = request_number;
19 void
20 test_i::shutdown (void)
22 this->orb_->shutdown (0);