blob: 67d706165db1d97b3f9226bb3779a08889864f0b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
|
// $Id$
#ifndef _EVENTSUPPLIER_I_H_
#define _EVENTSUPPLIER_I_H_
#include <orbsvcs/CosNotifyChannelAdminS.h>
class StructuredEventSupplier_i : public POA_CosNotifyComm::StructuredPushSupplier
{
public:
// Constructor
StructuredEventSupplier_i(CORBA::ORB_ptr orb);
virtual void disconnect_structured_push_supplier ()
throw (CORBA::SystemException);
virtual void subscription_change (
const CosNotification::EventTypeSeq & added,
const CosNotification::EventTypeSeq & removed
)
throw(CORBA::SystemException, CosNotifyComm::InvalidEventType);
private:
CORBA::ORB_var orb_;
};
#endif
|