summaryrefslogtreecommitdiff
path: root/TAO/tests/QtTests/test_i.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'TAO/tests/QtTests/test_i.cpp')
-rwxr-xr-xTAO/tests/QtTests/test_i.cpp38
1 files changed, 0 insertions, 38 deletions
diff --git a/TAO/tests/QtTests/test_i.cpp b/TAO/tests/QtTests/test_i.cpp
deleted file mode 100755
index 3b63ecbef4b..00000000000
--- a/TAO/tests/QtTests/test_i.cpp
+++ /dev/null
@@ -1,38 +0,0 @@
-// $Id$
-
-#include "test_i.h"
-
-#if defined(ACE_HAS_QT)
-
-#if !defined(__ACE_INLINE__)
-#include "test_i.i"
-#endif /* __ACE_INLINE__ */
-
-ACE_RCSID(FL_Cube, test_i, "$Id$")
-
-LCD_Display_imp::LCD_Display_imp (CORBA::ORB_ptr orb)
-
- : orb_ (CORBA::ORB::_duplicate (orb))
-{
-}
-
-void
-LCD_Display_imp::shutdown (CORBA::Environment&)
- ACE_THROW_SPEC ((CORBA::SystemException))
-{
- ACE_DEBUG ((LM_DEBUG,
- "The ORB has been shutdown, Close the windows to exit \n"));
- this->orb_->shutdown (0);
- this->orb_->destroy ();
-}
-
-void
-LCD_Display_imp::send_val (CORBA::Long val,
- CORBA::Environment &)
- ACE_THROW_SPEC ((CORBA::SystemException))
-{
- ACE_DEBUG ((LM_DEBUG,
- "The value from server is <%d> \n", val));
- emit set_value (val);
-}
-#endif /* ACE_HAS_QT */