summaryrefslogtreecommitdiff
path: root/TAO/orbsvcs/orbsvcs/Notify/EventTypeSeq.h
diff options
context:
space:
mode:
Diffstat (limited to 'TAO/orbsvcs/orbsvcs/Notify/EventTypeSeq.h')
-rw-r--r--TAO/orbsvcs/orbsvcs/Notify/EventTypeSeq.h74
1 files changed, 0 insertions, 74 deletions
diff --git a/TAO/orbsvcs/orbsvcs/Notify/EventTypeSeq.h b/TAO/orbsvcs/orbsvcs/Notify/EventTypeSeq.h
deleted file mode 100644
index b695dc9ea10..00000000000
--- a/TAO/orbsvcs/orbsvcs/Notify/EventTypeSeq.h
+++ /dev/null
@@ -1,74 +0,0 @@
-/* -*- C++ -*- */
-/**
- * @file EventTypeSeq.h
- *
- * $Id$
- *
- * @author Pradeep Gore <pradeep@oomworks.com>
- *
- *
- */
-
-#ifndef TAO_NS_EVENTTYPESEQ_H
-#define TAO_NS_EVENTTYPESEQ_H
-#include "ace/pre.h"
-
-#include "notify_export.h"
-
-#if !defined (ACE_LACKS_PRAGMA_ONCE)
-# pragma once
-#endif /* ACE_LACKS_PRAGMA_ONCE */
-
-#include "EventType.h"
-#include "ace/Unbounded_Set.h"
-
-/**
- * @class TAO_NS_EventTypeSeq
- *
- * @brief Allows operations using the CosNotification::EventTypeSeq type.
- *
- */
-class TAO_Notify_Export TAO_NS_EventTypeSeq : public ACE_Unbounded_Set <TAO_NS_EventType>
-{
- typedef ACE_Unbounded_Set <TAO_NS_EventType> inherited;
-
-public:
- /// Constructor
- TAO_NS_EventTypeSeq (void);
- TAO_NS_EventTypeSeq (const CosNotification::EventTypeSeq& event_type_seq);
-
- /// Preprocess the types added and removed.
- void init (TAO_NS_EventTypeSeq& added, TAO_NS_EventTypeSeq& removed);
-
- /// Populate this sequence with the intersection of rhs and lhs.
- void intersection (const TAO_NS_EventTypeSeq& rhs, const TAO_NS_EventTypeSeq& lhs);
-
- /// insert_seq the contents of <event_type_seq> into this object.
- void insert_seq (const CosNotification::EventTypeSeq& event_type_seq);
-
- /// remove_seq the contents of <event_type_seq> from this object.
- void remove_seq (const CosNotification::EventTypeSeq& event_type_seq);
-
- /// insert_seq the contents of <event_type_seq> into this object.
- void insert_seq (const TAO_NS_EventTypeSeq& event_type_seq);
-
- /// remove_seq the contents of <event_type_seq> from this object.
- void remove_seq (const TAO_NS_EventTypeSeq& event_type_seq);
-
- /// Populate <event_type_seq> with the contents of this object.
- void populate (CosNotification::EventTypeSeq& event_type) const;
-
- /// Populate <event_type_seq> with the contents of this object.
- // Excludes the special event type. This is used to avoid sending * type updates to proxys.
- void populate_no_special (CosNotification::EventTypeSeq& event_type) const;
-
- /// Print the contents.
- void dump (void) const;
-};
-
-#if defined (__ACE_INLINE__)
-#include "EventTypeSeq.inl"
-#endif /* __ACE_INLINE__ */
-
-#include "ace/post.h"
-#endif /* TAO_NS_EVENTTYPESEQ_H */