summaryrefslogtreecommitdiff
path: root/TAO/tests/Bug_3683_Regression/Echo.idl
diff options
context:
space:
mode:
Diffstat (limited to 'TAO/tests/Bug_3683_Regression/Echo.idl')
-rw-r--r--TAO/tests/Bug_3683_Regression/Echo.idl27
1 files changed, 27 insertions, 0 deletions
diff --git a/TAO/tests/Bug_3683_Regression/Echo.idl b/TAO/tests/Bug_3683_Regression/Echo.idl
new file mode 100644
index 00000000000..993d08612bd
--- /dev/null
+++ b/TAO/tests/Bug_3683_Regression/Echo.idl
@@ -0,0 +1,27 @@
+/* -*- C++ -*- */
+// $Id$
+
+#if !defined (_ECHO_IDL)
+#define _ECHO_IDL
+
+interface Echo
+{
+ // = TITLE
+ // Defines an interface that encapsulates operations that return the
+ // mesg string to be displayed and shuts down the server.
+
+ typedef sequence<Object> List;
+
+ List echo_list (in string message);
+ // This operation returns the message as a sequence of Objects and
+ // displays it on the screen as a string.
+
+ string echo_string (in string message);
+ // This operation returns the message as a string and displays it on
+ // the screen.
+
+ oneway void shutdown ();
+ // This operation will shutdown the server.
+};
+
+#endif /* _ECHO_IDL */