summaryrefslogtreecommitdiff
path: root/TAO/tests/Xt_Stopwatch/test_i.h
diff options
context:
space:
mode:
Diffstat (limited to 'TAO/tests/Xt_Stopwatch/test_i.h')
-rw-r--r--TAO/tests/Xt_Stopwatch/test_i.h60
1 files changed, 0 insertions, 60 deletions
diff --git a/TAO/tests/Xt_Stopwatch/test_i.h b/TAO/tests/Xt_Stopwatch/test_i.h
deleted file mode 100644
index e3faf1830d1..00000000000
--- a/TAO/tests/Xt_Stopwatch/test_i.h
+++ /dev/null
@@ -1,60 +0,0 @@
-// $Id$
-
-// ============================================================================
-//
-// = LIBRARY
-// TAO/tests/Xt_Stopwatch
-//
-// = FILENAME
-// test_i.h
-//
-// = AUTHOR
-// Bala
-//
-// ============================================================================
-
-#ifndef SERVER_TEST_I_H
-#define SERVER_TEST_I_H
-
-#include "testS.h"
-#include "timer.h"
-
-#if defined(ACE_HAS_XT)
-
-class Stopwatch_imp : public POA_Stopwatch
-{
- // = TITLE
- // Stopwatch implementation class
- //
- // = DESCRIPTION
- // Implements the Stopwatch interface in test.idl
- //
-public:
- Stopwatch_imp (CORBA::ORB_ptr, Timer_imp *);
- // ctor
-
- // = The Simple_Server methods.
- void start (CORBA::Environment&)
- ACE_THROW_SPEC ((CORBA::SystemException));
-
- void stop (CORBA::Environment&)
- ACE_THROW_SPEC ((CORBA::SystemException));
-
- void shutdown (CORBA::Environment&)
- ACE_THROW_SPEC ((CORBA::SystemException));
-
-private:
- CORBA::ORB_var orb_;
- // The ORB
-
- Timer_imp *timer_;
- // Hold the timer object...
-};
-
-#if defined(__ACE_INLINE__)
-#include "test_i.i"
-#endif /* __ACE_INLINE__ */
-
-#endif /* ACE_HAS_XT */
-
-#endif /* SERVER_TEST_I_H */