Merge pull request #1844 from jrw972/monterey
[ACE_TAO.git] / TAO / orbsvcs / tests / Bug_3387_Regression / StructuredEventConsumer_i.h
blob1b5912e316ba684aa4ce67b72096e38523dca250
1 // -*- C++ -*-
2 #ifndef _EVENTCONSUMER_I_H_
3 #define _EVENTCONSUMER_I_H_
5 #include "orbsvcs/CosNotifyCommS.h"
7 class StructuredEventConsumer_i :
8 public virtual POA_CosNotifyComm::StructuredPushConsumer
10 public:
11 StructuredEventConsumer_i(CORBA::ORB_ptr orb);
13 virtual void push_structured_event(
14 const CosNotification::StructuredEvent &notification
17 virtual void offer_change (
18 const CosNotification::EventTypeSeq & added,
19 const CosNotification::EventTypeSeq & removed
22 virtual void disconnect_structured_push_consumer();
24 int nummsgs();
26 private:
27 CORBA::ORB_var orb_;
28 int count_;
31 #endif