summaryrefslogtreecommitdiff
path: root/TAO/examples/Borland/Receiver.idl
blob: 9ccca7244d16fc47e36a1854d74dbdacde046259 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
/* -*- C++ -*- */
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.
};