summaryrefslogtreecommitdiff
path: root/TAO/examples/Simple/chat/Receiver.idl
blob: 90ea6570071bf40ceb406223f4cee6a33d580982 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
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.
};