Changes to attempt to silence bcc64x
[ACE_TAO.git] / TAO / performance-tests / Latency / AMH_Single_Threaded / Roundtrip.cpp
blob30233b647a256ba095a133ebfad8abde0d2e3286
1 #include "Roundtrip.h"
3 Roundtrip::Roundtrip (CORBA::ORB_ptr orb)
4 : orb_ (CORBA::ORB::_duplicate (orb))
8 void
9 Roundtrip::test_method (
10 Test::AMH_RoundtripResponseHandler_ptr _tao_rh,
11 Test::Timestamp send_time)
13 //ACE_DEBUG ((LM_DEBUG, "Test_Method called\n"));
14 _tao_rh->test_method (send_time);
15 //ACE_DEBUG ((LM_DEBUG, "RH completed\n"));
18 void
19 Roundtrip::shutdown (
20 Test::AMH_RoundtripResponseHandler_ptr _tao_rh)
22 _tao_rh->shutdown ();
23 this->orb_->shutdown (false);