/* -*- C++ -*- */ // $Id$ // ============================================================================ // // = LIBRARY // EventComm // // = FILENAME // Notification_Receiver__i.h // // = DESCRIPTION // Class interface for the implementation of the // // = AUTHOR // Douglas C. Schmidt (schmidt@cs.wustl.edu) // // ============================================================================ #if !defined (_Notification_Receiver_i_H) #define _Notification_Receiver_i_H #if defined (ACE_HAS_ORBIX) #include "Event_Comm.hh" class Notification_Receiver_i // = TITLE // Defines the implementation class for event . // // = DESCRIPTION { public: Notification_Receiver_i (void); ~Notification_Receiver_i (void); virtual void receive_notification (const Event_Comm::Notification ¬ification, CORBA::Environment &IT_env); // Pass the to the . virtual void disconnect (const char *reason, CORBA::Environment &IT_env); // Disconnect the from the , // giving it the . }; #endif /* ACE_HAS_ORBIX */ #endif /* _Notification_Receiver_i_H */