Changes to attempt to silence bcc64x
[ACE_TAO.git] / TAO / orbsvcs / tests / Bug_3387_Regression / StructuredEventConsumer_i.h
blob54f32b3c9ea05755245e91993a97445f5db7b5ed
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);
16 virtual void offer_change (
17 const CosNotification::EventTypeSeq & added,
18 const CosNotification::EventTypeSeq & removed);
20 virtual void disconnect_structured_push_consumer();
22 int nummsgs();
24 private:
25 CORBA::ORB_var orb_;
26 int count_;
29 #endif