summaryrefslogtreecommitdiff
path: root/TAO/tests/Bug_3672_Regression/ami_test.idl
diff options
context:
space:
mode:
Diffstat (limited to 'TAO/tests/Bug_3672_Regression/ami_test.idl')
-rw-r--r--TAO/tests/Bug_3672_Regression/ami_test.idl27
1 files changed, 27 insertions, 0 deletions
diff --git a/TAO/tests/Bug_3672_Regression/ami_test.idl b/TAO/tests/Bug_3672_Regression/ami_test.idl
new file mode 100644
index 00000000000..fa04f8a7b3e
--- /dev/null
+++ b/TAO/tests/Bug_3672_Regression/ami_test.idl
@@ -0,0 +1,27 @@
+
+//=============================================================================
+/**
+ * @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
+ {
+ interface AMI_Test
+ {
+ long foo (out long out_l);
+
+ oneway void shutdown ();
+ };
+
+ };