summaryrefslogtreecommitdiff
path: root/ACE/TAO/tests/Bug_2356_Regression/ami_test.idl
diff options
context:
space:
mode:
Diffstat (limited to 'ACE/TAO/tests/Bug_2356_Regression/ami_test.idl')
-rw-r--r--ACE/TAO/tests/Bug_2356_Regression/ami_test.idl31
1 files changed, 31 insertions, 0 deletions
diff --git a/ACE/TAO/tests/Bug_2356_Regression/ami_test.idl b/ACE/TAO/tests/Bug_2356_Regression/ami_test.idl
new file mode 100644
index 00000000000..c088eba7a4f
--- /dev/null
+++ b/ACE/TAO/tests/Bug_2356_Regression/ami_test.idl
@@ -0,0 +1,31 @@
+
+//=============================================================================
+/**
+ * @file ami_test.idl
+ *
+ * $Id$
+ *
+ * IDL description of the AMI Test interface
+ *
+ *
+ * @author Johnny Willemsen <jwillemsen@remedy.nl>
+ */
+//=============================================================================
+
+
+
+module A
+ {
+ exception DidTheRightThing {
+ long id;
+ wstring whatDidTheRightThing;
+ };
+
+ interface AMI_Test
+ {
+ void foo (in long value) raises (DidTheRightThing);
+
+ oneway void shutdown ();
+ };
+
+ };