3 //=============================================================================
7 * Defines the implementation header for the Receiver interface.
9 * @author Pradeep Gore <pradeep@cs.wustl.edu>
11 //=============================================================================
17 #include "ReceiverS.h"
22 * @brief Receiver object implementation
24 * This class has methods that are called by the chat server.
26 class Receiver_i
: public POA_Receiver
33 virtual ~Receiver_i ();
35 /// Receives a message string.
36 virtual void message (const char *msg
);
39 * Called when the chat server is going away. The client
40 * implementation should shutdown the chat client in response to
43 virtual void shutdown ();
45 /// Set the ORB pointer.
46 void orb (CORBA::ORB_ptr o
);
53 #endif /* RECEIVER_I_H */