1#ifndef _OE_COSNOTIFICATIONCOMM_IDL_ 2#define _OE_COSNOTIFICATIONCOMM_IDL_ 3 4#include<CosNotification.idl> 5 6module oe_CosNotificationComm { 7 8 interface Event { 9 10 enum status {MATCH, MATCHED}; 11 void callSeq(in CosNotification::EventBatch events, in status stat); 12 void callAny(in any event, in status stat); 13 }; 14 15}; 16#endif /* ifndef _OE_COSNOTIFICATIONCOMM_IDL_ */ 17 18