summaryrefslogtreecommitdiff
path: root/TAO/tests/AMI/test_i.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'TAO/tests/AMI/test_i.cpp')
-rw-r--r--TAO/tests/AMI/test_i.cpp62
1 files changed, 0 insertions, 62 deletions
diff --git a/TAO/tests/AMI/test_i.cpp b/TAO/tests/AMI/test_i.cpp
deleted file mode 100644
index 1b199315a26..00000000000
--- a/TAO/tests/AMI/test_i.cpp
+++ /dev/null
@@ -1,62 +0,0 @@
-// $Id$
-
-#include "test_i.h"
-#include "tao/debug.h"
-
-#if !defined(__ACE_INLINE__)
-#include "test_i.i"
-#endif /* __ACE_INLINE__ */
-
-ACE_RCSID(MT_Client, test_i, "$Id$")
-
-void
-Simple_Server_i::test_method (CORBA::Environment&)
- ACE_THROW_SPEC ((CORBA::SystemException))
-{
- if (TAO_debug_level > 0)
- ACE_DEBUG ((LM_DEBUG,
- "%N:%l:(%P:%t):Simple_Server_i::test_method called\n"));
-}
-
-CORBA::Long
-Simple_Server_i::get_number (CORBA::Environment&)
- ACE_THROW_SPEC ((CORBA::SystemException))
-{
- if (TAO_debug_level > 0)
- ACE_DEBUG ((LM_DEBUG,
- "%N:%l:(%P:%t):Simple_Server_i::get_number called\n"));
- return this->number_++;
-}
-
-void
-Simple_Server_i::put_number (CORBA::Long l,
- CORBA::Environment &)
- ACE_THROW_SPEC ((CORBA::SystemException))
-{
- if (TAO_debug_level > 0)
- ACE_DEBUG ((LM_DEBUG,
- "%N:%l:(%P:%t):Simple_Server_i::put_number: %d\n",
- l));
-}
-
-CORBA::Long
-Simple_Server_i::get_put_number (CORBA::Long_out out_l,
- CORBA::Long in_l,
- CORBA::Environment &ACE_TRY_ENV)
- ACE_THROW_SPEC ((CORBA::SystemException))
-{
- out_l = 931233;
- if (TAO_debug_level > 0)
- ACE_DEBUG ((LM_DEBUG,
- "%N:%l:(%P:%t):Simple_Server_i::get_put_number: %d\n",
- in_l));
-
- return 931234;
-}
-
-void
-Simple_Server_i::shutdown (CORBA::Environment&)
- ACE_THROW_SPEC ((CORBA::SystemException))
-{
- this->orb_->shutdown (0);
-}