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.idl12
1 files changed, 5 insertions, 7 deletions
diff --git a/TAO/tests/Bug_3683_Regression/Echo.idl b/TAO/tests/Bug_3683_Regression/Echo.idl
index ffc69e77ab6..52779336b89 100644
--- a/TAO/tests/Bug_3683_Regression/Echo.idl
+++ b/TAO/tests/Bug_3683_Regression/Echo.idl
@@ -2,24 +2,22 @@
#if !defined (_ECHO_IDL)
#define _ECHO_IDL
+// Defines an interface that encapsulates operations that return the
+// mesg string to be displayed and shuts down the server.
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.
+ List echo_list (in string message);
- string echo_string (in string message);
// This operation returns the message as a string and displays it on
// the screen.
+ string echo_string (in string message);
- oneway void shutdown ();
// This operation will shutdown the server.
+ oneway void shutdown ();
};
#endif /* _ECHO_IDL */