blob: 09e0af256886943f0992a63d3e9f82410944f869 (
plain) (
tree)
|
|
#ifndef _OE_COSNOTIFICATIONCOMM_IDL_
#define _OE_COSNOTIFICATIONCOMM_IDL_
#include<CosNotification.idl>
module oe_CosNotificationComm {
interface Event {
enum status {MATCH, MATCHED};
void callSeq(in CosNotification::EventBatch events, in status stat);
void callAny(in any event, in status stat);
};
};
#endif /* ifndef _OE_COSNOTIFICATIONCOMM_IDL_ */
|