summaryrefslogtreecommitdiff
path: root/TAO/DevGuideExamples/NotifyService/SupplierSideNC/StructuredEventSupplier_i.h
blob: 5de5db6220f3ff6a3a24f7172fe295616c11f189 (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
#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