blob: 09e0af256886943f0992a63d3e9f82410944f869 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
#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_ */
|