summaryrefslogtreecommitdiff
path: root/ACE/TAO/examples/Borland/Receiver.idl
diff options
context:
space:
mode:
Diffstat (limited to 'ACE/TAO/examples/Borland/Receiver.idl')
-rw-r--r--ACE/TAO/examples/Borland/Receiver.idl15
1 files changed, 15 insertions, 0 deletions
diff --git a/ACE/TAO/examples/Borland/Receiver.idl b/ACE/TAO/examples/Borland/Receiver.idl
new file mode 100644
index 00000000000..90ea6570071
--- /dev/null
+++ b/ACE/TAO/examples/Borland/Receiver.idl
@@ -0,0 +1,15 @@
+/* -*- C++ -*- */
+// $Id$
+
+interface Receiver
+{
+ // = TITLE
+ // The Receiver interface is implemented by the simple chat
+ // clients.The interface functions are called by the chat server.
+
+ void message (in string msg);
+ // Displays the message in the client application.
+
+ oneway void shutdown ();
+ // Called by the chat server before it goes away.
+};