summaryrefslogtreecommitdiff
path: root/ACE/TAO/tests/Bug_3801_Regression/ami_test.idl
diff options
context:
space:
mode:
Diffstat (limited to 'ACE/TAO/tests/Bug_3801_Regression/ami_test.idl')
-rw-r--r--ACE/TAO/tests/Bug_3801_Regression/ami_test.idl42
1 files changed, 42 insertions, 0 deletions
diff --git a/ACE/TAO/tests/Bug_3801_Regression/ami_test.idl b/ACE/TAO/tests/Bug_3801_Regression/ami_test.idl
new file mode 100644
index 00000000000..be446bc290b
--- /dev/null
+++ b/ACE/TAO/tests/Bug_3801_Regression/ami_test.idl
@@ -0,0 +1,42 @@
+
+//=============================================================================
+/**
+ * @file ami_test.idl
+ *
+ * $Id$
+ *
+ * IDL description of the AMI Test interface
+ *
+ *
+ * @author Alexander Babu Arulanthu <alex@cs.wustl.edu>
+ * @author Michael Kircher <Michael.Kircher@mchp.siemens.de>
+ */
+//=============================================================================
+
+
+
+module A
+ {
+ exception DidTheRightThing {
+ long id;
+ string whatDidTheRightThing;
+ };
+ exception DidTheRightThingB {
+ long id;
+ string whatDidTheRightThing;
+ };
+
+ interface AMI_Test
+ {
+ attribute long yadda
+ getraises (DidTheRightThingB)
+ setraises (DidTheRightThing);
+
+ readonly attribute long dadda
+ raises (DidTheRightThing);
+
+ oneway void shutdown ();
+
+ void inout_arg_test (inout string str);
+ };
+ };