Merge pull request #1844 from jrw972/monterey
[ACE_TAO.git] / TAO / orbsvcs / tests / Bug_3387_Regression / StructuredEventSupplier_i.h
blob152a368249ef1c80e7b674d4bf81d91871285159
1 // -*- C++ -*-
2 #ifndef _EVENTSUPPLIER_I_H_
3 #define _EVENTSUPPLIER_I_H_
5 #include "orbsvcs/CosNotifyCommS.h"
7 class StructuredEventSupplier_i :
8 public virtual POA_CosNotifyComm::StructuredPushSupplier
10 public:
11 // Constructor
12 StructuredEventSupplier_i(CORBA::ORB_ptr orb);
13 virtual void disconnect_structured_push_supplier ();
16 virtual void subscription_change (
17 const CosNotification::EventTypeSeq & added,
18 const CosNotification::EventTypeSeq & removed
21 private:
22 CORBA::ORB_var orb_;
25 #endif