summaryrefslogtreecommitdiff
path: root/ACE/TAO/tests/Bug_3567_Regression/ami_test.idl
diff options
context:
space:
mode:
Diffstat (limited to 'ACE/TAO/tests/Bug_3567_Regression/ami_test.idl')
-rw-r--r--ACE/TAO/tests/Bug_3567_Regression/ami_test.idl39
1 files changed, 39 insertions, 0 deletions
diff --git a/ACE/TAO/tests/Bug_3567_Regression/ami_test.idl b/ACE/TAO/tests/Bug_3567_Regression/ami_test.idl
new file mode 100644
index 00000000000..ffdc66d63d5
--- /dev/null
+++ b/ACE/TAO/tests/Bug_3567_Regression/ami_test.idl
@@ -0,0 +1,39 @@
+
+//=============================================================================
+/**
+ * @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;
+ };
+
+ interface AMI_Test
+ {
+ long foo (out long out_l,
+ in long in_l,
+ in string in_str)
+ raises (DidTheRightThing);
+
+ attribute long yadda;
+
+ oneway void shutdown ();
+
+ void inout_arg_test (inout string str);
+ };
+
+ };