// $Id$ #include "ace/Service_Config.h" #include "Notification_Receiver_i.h" #if defined (ACE_HAS_ORBIX) Notification_Receiver_i::Notification_Receiver_i (void) { } Notification_Receiver_i::~Notification_Receiver_i (void) { } // Inform the that has occurred. void Notification_Receiver_i::receive_notification (const Event_Comm::Notification ¬ification, CORBA::Environment &IT_env) { const char *tmpstr = notification.tag_; ACE_DEBUG ((LM_DEBUG, "**** got notification = %s\n", tmpstr)); } // Disconnect the from the . void Notification_Receiver_i::disconnect (const char *reason, CORBA::Environment &IT_env) { ACE_DEBUG ((LM_DEBUG, "**** got disconnected due to %s\n", reason)); ACE_Service_Config::end_reactor_event_loop (); } #endif /* ACE_HAS_ORBIX */