summaryrefslogtreecommitdiff
path: root/TAO/tests/Faults/ping_i.h
diff options
context:
space:
mode:
Diffstat (limited to 'TAO/tests/Faults/ping_i.h')
-rw-r--r--TAO/tests/Faults/ping_i.h60
1 files changed, 0 insertions, 60 deletions
diff --git a/TAO/tests/Faults/ping_i.h b/TAO/tests/Faults/ping_i.h
deleted file mode 100644
index 93a9723e97d..00000000000
--- a/TAO/tests/Faults/ping_i.h
+++ /dev/null
@@ -1,60 +0,0 @@
-// $Id$
-
-// ============================================================================
-//
-// = LIBRARY
-// TAO/tests/Faults
-//
-// = FILENAME
-// ping_i.h
-//
-// = AUTHOR
-// Carlos O'Ryan
-//
-// ============================================================================
-
-#ifndef TAO_PING_I_H
-#define TAO_PING_I_H
-
-#include "pingS.h"
-
-class Ping_i : public POA_Ping
-{
- // = TITLE
- // A simple implementation of the <ping> interface
- //
- // = DESCRIPTION
- // Used to verify that the client can tolerate server crashes with
- // oneway invocations and that there are no problems with
- // persistent object references after the crash.
- //
-public:
- Ping_i (CORBA::ORB_ptr orb,
- PortableServer::POA_ptr the_poa);
- // ctor
-
- // = The Ping interface methods
- void ping (Ping_ptr callback,
- CORBA::Environment &ACE_TRY_ENV)
- ACE_THROW_SPEC ((CORBA::SystemException));
- void pong (CORBA::Environment &ACE_TRY_ENV)
- ACE_THROW_SPEC ((CORBA::SystemException));
- void shutdown (CORBA::Environment &ACE_TRY_ENV)
- ACE_THROW_SPEC ((CORBA::SystemException));
-
- PortableServer::POA_ptr _default_POA (CORBA::Environment &ACE_TRY_ENV)
- ACE_THROW_SPEC ((CORBA::SystemException));
-
-private:
- CORBA::ORB_var orb_;
- // The orb
-
- PortableServer::POA_var poa_;
- // The poa
-};
-
-#if defined(__ACE_INLINE__)
-#include "ping_i.i"
-#endif /* __ACE_INLINE__ */
-
-#endif /* TAO_PING_I_H */