summaryrefslogtreecommitdiff
path: root/TAO/tests/Faults/ping_i.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'TAO/tests/Faults/ping_i.cpp')
-rw-r--r--TAO/tests/Faults/ping_i.cpp39
1 files changed, 0 insertions, 39 deletions
diff --git a/TAO/tests/Faults/ping_i.cpp b/TAO/tests/Faults/ping_i.cpp
deleted file mode 100644
index e5654905e4f..00000000000
--- a/TAO/tests/Faults/ping_i.cpp
+++ /dev/null
@@ -1,39 +0,0 @@
-// $Id$
-
-#include "ping_i.h"
-
-#if !defined(__ACE_INLINE__)
-#include "ping_i.i"
-#endif /* __ACE_INLINE__ */
-
-ACE_RCSID(Faults, test_i, "$Id$")
-
-void
-PingObject_i::ping (PingObject_ptr callback,
- CORBA::Environment &ACE_TRY_ENV)
- ACE_THROW_SPEC ((CORBA::SystemException))
-{
- ACE_DEBUG ((LM_DEBUG, "PingObject_i::ping (%P|%t)\n"));
- callback->pong (ACE_TRY_ENV);
-}
-
-void
-PingObject_i::pong (CORBA::Environment &)
- ACE_THROW_SPEC ((CORBA::SystemException))
-{
- ACE_DEBUG ((LM_DEBUG, "PingObject_i::pong (%P|%t)\n"));
-}
-
-void
-PingObject_i::shutdown (CORBA::Environment &ACE_TRY_ENV)
- ACE_THROW_SPEC ((CORBA::SystemException))
-{
- this->orb_->shutdown (0, ACE_TRY_ENV);
-}
-
-PortableServer::POA_ptr
-PingObject_i::_default_POA (CORBA::Environment &)
- ACE_THROW_SPEC ((CORBA::SystemException))
-{
- return PortableServer::POA::_duplicate (this->poa_.in ());
-}