2 //=============================================================================
6 * Implements the Receiver_i class, which is used by the chat client.
8 * @author Pradeep Gore <pradeep@cs.wustl.edu>
10 //=============================================================================
13 #include "Receiver_i.h"
15 Receiver_i::Receiver_i ()
20 Receiver_i::~Receiver_i ()
25 Receiver_i::message (const char *msg
)
33 Receiver_i::shutdown ()
35 // Instruct the ORB to shutdown.
36 this->orb_
->shutdown ();
40 Receiver_i::orb (CORBA::ORB_ptr o
)
42 this->orb_
= CORBA::ORB::_duplicate (o
);