summaryrefslogtreecommitdiff
path: root/TAO/DevGuideExamples/NotifyService/Messenger/StructuredEventConsumer_i.h
diff options
context:
space:
mode:
Diffstat (limited to 'TAO/DevGuideExamples/NotifyService/Messenger/StructuredEventConsumer_i.h')
-rw-r--r--TAO/DevGuideExamples/NotifyService/Messenger/StructuredEventConsumer_i.h29
1 files changed, 0 insertions, 29 deletions
diff --git a/TAO/DevGuideExamples/NotifyService/Messenger/StructuredEventConsumer_i.h b/TAO/DevGuideExamples/NotifyService/Messenger/StructuredEventConsumer_i.h
deleted file mode 100644
index adb5bd999c8..00000000000
--- a/TAO/DevGuideExamples/NotifyService/Messenger/StructuredEventConsumer_i.h
+++ /dev/null
@@ -1,29 +0,0 @@
-// $Id$
-
-#ifndef _EVENTCONSUMER_I_H_
-#define _EVENTCONSUMER_I_H_
-
-#include "orbsvcs/CosNotifyCommS.h"
-
-class StructuredEventConsumer_i :
- public virtual POA_CosNotifyComm::StructuredPushConsumer
-{
-public:
- StructuredEventConsumer_i(CORBA::ORB_ptr orb);
-
- virtual void push_structured_event(
- const CosNotification::StructuredEvent &notification
- );
-
- virtual void offer_change (
- const CosNotification::EventTypeSeq & added,
- const CosNotification::EventTypeSeq & removed
- );
-
- virtual void disconnect_structured_push_consumer();
-
-private:
- CORBA::ORB_var orb_;
-};
-
-#endif