Changes to attempt to silence bcc64x
[ACE_TAO.git] / TAO / examples / Simple / echo / Echo.idl
blobffc69e77ab6614ab21f1b3c1b20c9344a9991f6e
1 /* -*- C++ -*- */
2 #if !defined (_ECHO_IDL)
3 #define _ECHO_IDL
5 interface Echo
7 // = TITLE
8 // Defines an interface that encapsulates operations that return the
9 // mesg string to be displayed and shuts down the server.
11 typedef sequence<Object> List;
13 List echo_list (in string message);
14 // This operation returns the message as a sequence of Objects and
15 // displays it on the screen as a string.
17 string echo_string (in string message);
18 // This operation returns the message as a string and displays it on
19 // the screen.
21 oneway void shutdown ();
22 // This operation will shutdown the server.
25 #endif /* _ECHO_IDL */