summaryrefslogtreecommitdiff
path: root/TAO/examples/Simple/echo/Echo.idl
diff options
context:
space:
mode:
Diffstat (limited to 'TAO/examples/Simple/echo/Echo.idl')
-rw-r--r--TAO/examples/Simple/echo/Echo.idl27
1 files changed, 0 insertions, 27 deletions
diff --git a/TAO/examples/Simple/echo/Echo.idl b/TAO/examples/Simple/echo/Echo.idl
deleted file mode 100644
index a396838f0bb..00000000000
--- a/TAO/examples/Simple/echo/Echo.idl
+++ /dev/null
@@ -1,27 +0,0 @@
-/* -*- 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 */