summaryrefslogtreecommitdiff
path: root/TAO/tests/AMI/ami_test.idl
diff options
context:
space:
mode:
Diffstat (limited to 'TAO/tests/AMI/ami_test.idl')
-rw-r--r--TAO/tests/AMI/ami_test.idl40
1 files changed, 0 insertions, 40 deletions
diff --git a/TAO/tests/AMI/ami_test.idl b/TAO/tests/AMI/ami_test.idl
deleted file mode 100644
index bb8b8d3fef7..00000000000
--- a/TAO/tests/AMI/ami_test.idl
+++ /dev/null
@@ -1,40 +0,0 @@
-// $Id$
-
-// ============================================================================
-//
-// = LIBRARY
-// TAO/tests/AMI
-//
-// = FILENAME
-// ami_test.idl
-//
-// = DESCRIPTION
-// IDL description of the AMI Test interface
-//
-// = AUTHOR
-// Alexander Babu Arulanthu <alex@cs.wustl.edu>,
-// Michael Kircher <Michael.Kircher@mchp.siemens.de>
-//
-// ============================================================================
-
-
-module A
- {
- exception DidNotWork {
- long id;
- string whatDidNotWork;
- };
-
- interface AMI_Test
- {
- long foo (out long out_l,
- in long in_l,
- in string in_str)
- raises (DidNotWork);
-
- attribute long yadda;
-
- oneway void shutdown ();
- };
-
- };