Merge pull request #2316 from jwillemsen/jwi-taskcommenttypo
[ACE_TAO.git] / TAO / orbsvcs / DevGuideExamples / NotifyService / QoSProperties / StructuredEventSupplier_i.h
blobe6999f98ee5135b054a3d49ae14d002001246aee
1 #ifndef _EVENTSUPPLIER_I_H_
2 #define _EVENTSUPPLIER_I_H_
4 #include "orbsvcs/CosNotifyChannelAdminS.h"
6 class StructuredEventSupplier_i :
7 public virtual POA_CosNotifyComm::StructuredPushSupplier
9 public:
10 // Constructor
11 StructuredEventSupplier_i(CORBA::ORB_ptr orb);
12 virtual void disconnect_structured_push_supplier ();
14 virtual void subscription_change (
15 const CosNotification::EventTypeSeq & added,
16 const CosNotification::EventTypeSeq & removed
18 private:
19 CORBA::ORB_var orb_;
22 #endif