summaryrefslogtreecommitdiff
path: root/TAO/tests/Native_Exceptions/test_i.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'TAO/tests/Native_Exceptions/test_i.cpp')
-rw-r--r--TAO/tests/Native_Exceptions/test_i.cpp30
1 files changed, 0 insertions, 30 deletions
diff --git a/TAO/tests/Native_Exceptions/test_i.cpp b/TAO/tests/Native_Exceptions/test_i.cpp
deleted file mode 100644
index c2ed5cd8be2..00000000000
--- a/TAO/tests/Native_Exceptions/test_i.cpp
+++ /dev/null
@@ -1,30 +0,0 @@
-// $Id$
-
-#include "test_i.h"
-#include "tao/debug.h"
-
-#if !defined(__ACE_INLINE__)
-#include "test_i.i"
-#endif /* __ACE_INLINE__ */
-
-ACE_RCSID(Native_Exceptions, test_i, "$Id$")
-
-CORBA::Long
-Simple_Server_i::test_method (CORBA::Long x)
- throw ()
-{
- return x;
-}
-
-CORBA::Long
-Simple_Server_i::test_raise (CORBA::Long x)
- throw (Simple_Server::Failure)
-{
- throw Simple_Server::Failure ();
-}
-
-void
-Simple_Server_i::shutdown (void) throw ()
-{
- this->orb_->shutdown ();
-}