Changes to attempt to silence bcc64x
[ACE_TAO.git] / TAO / orbsvcs / tests / Bug_3387_Regression / StructuredEventSupplier_i.h
blobd235de89f4978cb49b6cccbfa6937e8a9556e21c
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);
20 private:
21 CORBA::ORB_var orb_;
24 #endif