Revert "Use a variable on the stack to not have a temporary in the call"
[ACE_TAO.git] / TAO / tests / Xt_Stopwatch / test_i.cpp
blobb348655e7d86375a2a3b3738d48c4c8c54619e2e
1 #include "test_i.h"
3 Stopwatch_imp::Stopwatch_imp (CORBA::ORB_ptr orb, Timer_imp *timer)
4 : orb_ (CORBA::ORB::_duplicate (orb)),
5 timer_ (timer)
9 void
10 Stopwatch_imp::start ()
12 this->timer_->start ();
15 void
16 Stopwatch_imp::stop ()
18 this->timer_->stop ();
21 void
22 Stopwatch_imp::shutdown ()
24 this->orb_->shutdown (false);