summaryrefslogtreecommitdiff
path: root/TAO/tests/Nested_Event_Loop/test_i.h
diff options
context:
space:
mode:
authorWilliam R. Otte <wotte@dre.vanderbilt.edu>2006-07-24 15:50:11 +0000
committerWilliam R. Otte <wotte@dre.vanderbilt.edu>2006-07-24 15:50:11 +0000
commit6b846cf03c0bcbd8c276cb0af61a181e5f98eaae (patch)
treeda50d054f9c761c3f6a5923f6979e93306c56d68 /TAO/tests/Nested_Event_Loop/test_i.h
parent0e555b9150d38e3b3473ba325b56db2642e6352b (diff)
downloadATCD-6b846cf03c0bcbd8c276cb0af61a181e5f98eaae.tar.gz
Repo restructuring
Diffstat (limited to 'TAO/tests/Nested_Event_Loop/test_i.h')
-rw-r--r--TAO/tests/Nested_Event_Loop/test_i.h54
1 files changed, 0 insertions, 54 deletions
diff --git a/TAO/tests/Nested_Event_Loop/test_i.h b/TAO/tests/Nested_Event_Loop/test_i.h
deleted file mode 100644
index 37d1b80f541..00000000000
--- a/TAO/tests/Nested_Event_Loop/test_i.h
+++ /dev/null
@@ -1,54 +0,0 @@
-// $Id$
-
-#include "testS.h"
-
-class server_i : public POA_server
-{
-public:
- server_i (CORBA::ORB_ptr orb);
-
- void loop (client_ptr remote_partner,
- CORBA::ULong event_loop_depth,
- CORBA::ULong event_loop_iterations
- ACE_ENV_ARG_DECL)
- ACE_THROW_SPEC ((CORBA::SystemException));
-
- void run_no_ops (client_ptr remote_partner,
- CORBA::ULong iterations
- ACE_ENV_ARG_DECL)
- ACE_THROW_SPEC ((CORBA::SystemException));
-
- void no_op (client_ptr remote_partner,
- const act &act_for_iterations,
- const act &act_for_flag
- ACE_ENV_ARG_DECL_NOT_USED)
- ACE_THROW_SPEC ((CORBA::SystemException));
-
- void shutdown (ACE_ENV_SINGLE_ARG_DECL)
- ACE_THROW_SPEC ((CORBA::SystemException));
-
-private:
- CORBA::ORB_var orb_;
-};
-
-class client_i : public POA_client
-{
-public:
- client_i (server_ptr remote_partner);
-
- void loop (CORBA::ULong event_loop_depth,
- CORBA::ULong event_loop_iterations
- ACE_ENV_ARG_DECL_NOT_USED)
- ACE_THROW_SPEC ((CORBA::SystemException));
-
- void oneway_no_op (const act &act_for_iterations,
- const act &act_for_flag
- ACE_ENV_ARG_DECL_NOT_USED)
- ACE_THROW_SPEC ((CORBA::SystemException));
-
- void twoway_no_op (ACE_ENV_SINGLE_ARG_DECL_NOT_USED)
- ACE_THROW_SPEC ((CORBA::SystemException));
-
-private:
- server_var remote_partner_;
-};