Merge pull request #2306 from mitza-oci/warnings
[ACE_TAO.git] / TAO / examples / Simple / chat / Receiver.idl
blob9ccca7244d16fc47e36a1854d74dbdacde046259
1 /* -*- C++ -*- */
2 interface Receiver
4 // = TITLE
5 // The Receiver interface is implemented by the simple chat
6 // clients.The interface functions are called by the chat server.
8 void message (in string msg);
9 // Displays the message in the client application.
11 oneway void shutdown ();
12 // Called by the chat server before it goes away.