summaryrefslogtreecommitdiff
path: root/TAO/tests/NestedUpcall/Simple/server_i.h
diff options
context:
space:
mode:
Diffstat (limited to 'TAO/tests/NestedUpcall/Simple/server_i.h')
-rw-r--r--TAO/tests/NestedUpcall/Simple/server_i.h32
1 files changed, 0 insertions, 32 deletions
diff --git a/TAO/tests/NestedUpcall/Simple/server_i.h b/TAO/tests/NestedUpcall/Simple/server_i.h
deleted file mode 100644
index e1bd4802b1e..00000000000
--- a/TAO/tests/NestedUpcall/Simple/server_i.h
+++ /dev/null
@@ -1,32 +0,0 @@
-// $Id$
-
-#include "testS.h"
-
-class server_i : public POA_server
-{
-public:
- server_i (int quiet,
- CORBA::ORB_ptr orb);
-
- void ping (CORBA::UShort time_to_live,
- CORBA::Environment &ACE_TRY_ENV)
- ACE_THROW_SPEC ((CORBA::SystemException));
-
- void start (client_ptr c,
- CORBA::UShort time_to_live,
- CORBA::Environment &ACE_TRY_ENV)
- ACE_THROW_SPEC ((CORBA::SystemException));
-
- void shutdown (CORBA::Environment &ACE_TRY_ENV)
- ACE_THROW_SPEC ((CORBA::SystemException));
-
-private:
- int quiet_;
- // Be quiet.
-
- client_var client_;
- // Pointer to server.
-
- CORBA::ORB_var orb_;
- // Pointer to orb.
-};