summaryrefslogtreecommitdiff
path: root/TAO/tests/Xt_Stopwatch/test_i.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'TAO/tests/Xt_Stopwatch/test_i.cpp')
-rw-r--r--TAO/tests/Xt_Stopwatch/test_i.cpp39
1 files changed, 0 insertions, 39 deletions
diff --git a/TAO/tests/Xt_Stopwatch/test_i.cpp b/TAO/tests/Xt_Stopwatch/test_i.cpp
deleted file mode 100644
index 2cf9e855596..00000000000
--- a/TAO/tests/Xt_Stopwatch/test_i.cpp
+++ /dev/null
@@ -1,39 +0,0 @@
-// $Id$
-
-#include "test_i.h"
-
-#if defined(ACE_HAS_XT)
-
-#if !defined(__ACE_INLINE__)
-#include "test_i.i"
-#endif /* __ACE_INLINE__ */
-
-ACE_RCSID(FL_Cube, test_i, "$Id$")
-
-Stopwatch_imp::Stopwatch_imp (CORBA::ORB_ptr orb, Timer_imp *timer)
- : orb_ (CORBA::ORB::_duplicate (orb)),
- timer_ (timer)
-{
-
-}
-
-void
-Stopwatch_imp::start (CORBA::Environment&)
-{
- this->timer_->start ();
-}
-
-void
-Stopwatch_imp::stop (CORBA::Environment&)
-{
- this->timer_->stop ();
-}
-
-void
-Stopwatch_imp::shutdown (CORBA::Environment&)
-{
- this->orb_->shutdown (0);
-}
-
-
-#endif /* ACE_HAS_XT */