summaryrefslogtreecommitdiff
path: root/TAO/tests/Reliable_Oneways/Test.idl
diff options
context:
space:
mode:
Diffstat (limited to 'TAO/tests/Reliable_Oneways/Test.idl')
-rw-r--r--TAO/tests/Reliable_Oneways/Test.idl29
1 files changed, 0 insertions, 29 deletions
diff --git a/TAO/tests/Reliable_Oneways/Test.idl b/TAO/tests/Reliable_Oneways/Test.idl
deleted file mode 100644
index a083bd6412c..00000000000
--- a/TAO/tests/Reliable_Oneways/Test.idl
+++ /dev/null
@@ -1,29 +0,0 @@
-//
-// $Id$
-//
-
-module Test
-{
- interface Shutdown_Helper;
-
- /// An interface to send oneway messages
- interface Oneway_Receiver
- {
- /// The server raises a system exception, only the
- /// SYNC_WITH_TARGET can detect that.
- oneway void raise_no_permission ();
-
- /// Destroy the object
- oneway void destroy ();
-
- /// Return a helper interface
- Shutdown_Helper get_shutdown_helper ();
- };
-
- /// A simple interface to shutdown the server
- interface Shutdown_Helper
- {
- /// Shutdown the server
- void shutdown ();
- };
-};