summaryrefslogtreecommitdiff
path: root/TAO/tests/CodeSets/simple/simple.idl
diff options
context:
space:
mode:
Diffstat (limited to 'TAO/tests/CodeSets/simple/simple.idl')
-rw-r--r--TAO/tests/CodeSets/simple/simple.idl16
1 files changed, 16 insertions, 0 deletions
diff --git a/TAO/tests/CodeSets/simple/simple.idl b/TAO/tests/CodeSets/simple/simple.idl
new file mode 100644
index 00000000000..9f58cc8869f
--- /dev/null
+++ b/TAO/tests/CodeSets/simple/simple.idl
@@ -0,0 +1,16 @@
+// $Id$
+
+interface simple
+{
+ string op1 (in string name,
+ in any inany,
+ out any outany);
+
+ wstring op2 (in wstring s1);
+
+ /// A method to shutdown the ORB
+ /**
+ * This method is used to simplify the test shutdown process
+ */
+ oneway void shutdown ();
+};