summaryrefslogtreecommitdiff
path: root/TAO/tests/DSI_Gateway/test_i.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'TAO/tests/DSI_Gateway/test_i.cpp')
-rw-r--r--TAO/tests/DSI_Gateway/test_i.cpp42
1 files changed, 0 insertions, 42 deletions
diff --git a/TAO/tests/DSI_Gateway/test_i.cpp b/TAO/tests/DSI_Gateway/test_i.cpp
deleted file mode 100644
index 520cd3c79de..00000000000
--- a/TAO/tests/DSI_Gateway/test_i.cpp
+++ /dev/null
@@ -1,42 +0,0 @@
-// $Id$
-
-#include "test_i.h"
-
-#if !defined(__ACE_INLINE__)
-#include "test_i.i"
-#endif /* __ACE_INLINE__ */
-
-ACE_RCSID(DSI_Gateway, test_i, "$Id$")
-
-CORBA::Long
-Simple_Server_i::test_method (CORBA::Long x,
- const Structure& the_in_structure,
- Structure_out the_out_structure,
- char *&name,
- CORBA::Environment&)
- ACE_THROW_SPEC (())
-{
- Structure *tmp;
- ACE_NEW_RETURN (tmp, Structure (the_in_structure), -1);
- the_out_structure = tmp;
-
- ACE_DEBUG ((LM_DEBUG,
- "Simpler_Server_i ====\n"
- " x = %d\n"
- " i = %d\n"
- " length = %d\n"
- " name = <%s>\n",
- x,
- the_in_structure.i,
- the_in_structure.seq.length (),
- name));
-
- return x;
-}
-
-void
-Simple_Server_i::shutdown (CORBA::Environment& ACE_TRY_ENV)
- ACE_THROW_SPEC (())
-{
- this->orb_->shutdown (0, ACE_TRY_ENV);
-}