summaryrefslogtreecommitdiff
path: root/TAO/tests/Interceptors/test.idl
diff options
context:
space:
mode:
Diffstat (limited to 'TAO/tests/Interceptors/test.idl')
-rw-r--r--TAO/tests/Interceptors/test.idl48
1 files changed, 0 insertions, 48 deletions
diff --git a/TAO/tests/Interceptors/test.idl b/TAO/tests/Interceptors/test.idl
deleted file mode 100644
index 9a89e6f698b..00000000000
--- a/TAO/tests/Interceptors/test.idl
+++ /dev/null
@@ -1,48 +0,0 @@
-// $Id$
-
-// ============================================================================
-//
-// = LIBRARY
-// TAO/tests/Interceptors
-//
-// = FILENAME
-// test.idl
-//
-// = DESCRIPTION
-// Simple IDL file to test portable interceptor support.
-//
-// = AUTHORS
-// Nanbor Wang <nanbor@cs.wustl.edu>
-//
-// ============================================================================
-
-module Test_Interceptors
-{
- exception Silly
- {};
-
- interface Visual
- {
- // = TITLE
- // A test idl for checking interceptor visually.
- //
- // = DESCRIPTION
- //
-
- void normal (in long arg);
- // Normal operation.
-
- void nothing ();
- // Normal operation without return.
-
- void user ()
- raises (Silly);
- // throws a user exception.
-
- void system ();
- // thows a system exception.
-
- oneway void shutdown ();
- // shutdown the ORB
- };
-};