Use =default for skeleton copy constructor
[ACE_TAO.git] / TAO / orbsvcs / DevGuideExamples / NotifyService / EventSequence / EventSequenceConsumer_i.h
blobbccc18fa496bbec775577f5d45f6fd476b41736e
1 #ifndef _EVENTCONSUMER_I_H_
2 #define _EVENTCONSUMER_I_H_
4 #include "orbsvcs/CosNotifyChannelAdminS.h"
6 class EventSequenceConsumer_i : public POA_CosNotifyComm::SequencePushConsumer
8 public:
9 EventSequenceConsumer_i(CORBA::ORB_ptr orb);
11 virtual void push_structured_events (
12 const CosNotification::EventBatch & events
15 virtual void offer_change (
16 const CosNotification::EventTypeSeq & added,
17 const CosNotification::EventTypeSeq & removed
20 virtual void disconnect_sequence_push_consumer ();
21 private:
22 CORBA::ORB_var orb_;
25 #endif