summaryrefslogtreecommitdiff
path: root/TAO/orbsvcs/orbsvcs/Notify/Proxy.h
diff options
context:
space:
mode:
Diffstat (limited to 'TAO/orbsvcs/orbsvcs/Notify/Proxy.h')
-rw-r--r--TAO/orbsvcs/orbsvcs/Notify/Proxy.h46
1 files changed, 23 insertions, 23 deletions
diff --git a/TAO/orbsvcs/orbsvcs/Notify/Proxy.h b/TAO/orbsvcs/orbsvcs/Notify/Proxy.h
index 9e767d25f4f..e8ddadcc05c 100644
--- a/TAO/orbsvcs/orbsvcs/Notify/Proxy.h
+++ b/TAO/orbsvcs/orbsvcs/Notify/Proxy.h
@@ -9,8 +9,8 @@
*
*/
-#ifndef TAO_NS_PROXY_H
-#define TAO_NS_PROXY_H
+#ifndef TAO_Notify_PROXY_H
+#define TAO_Notify_PROXY_H
#include "ace/pre.h"
#include "notify_export.h"
@@ -25,28 +25,28 @@
#include "Admin.h"
#include "Refcountable_Guard_T.h"
-class TAO_NS_Admin;
-class TAO_NS_Peer;
+class TAO_Notify_Admin;
+class TAO_Notify_Peer;
/**
- * @class TAO_NS_Proxy
+ * @class TAO_Notify_Proxy
*
* @brief Base class proxy for all proxys in NS.
*
*/
-class TAO_Notify_Export TAO_NS_Proxy : public virtual TAO_NS_Object
+class TAO_Notify_Export TAO_Notify_Proxy : public virtual TAO_Notify_Object
{
- friend class TAO_NS_Peer;
+ friend class TAO_Notify_Peer;
public:
typedef CosNotifyChannelAdmin::ProxyIDSeq SEQ;
typedef CosNotifyChannelAdmin::ProxyIDSeq_var SEQ_VAR;
/// Constuctor
- TAO_NS_Proxy (void);
+ TAO_Notify_Proxy (void);
/// Destructor
- ~TAO_NS_Proxy ();
+ ~TAO_Notify_Proxy ();
/// Activate
virtual CORBA::Object_ptr activate (PortableServer::Servant servant ACE_ENV_ARG_DECL);
@@ -55,22 +55,22 @@ public:
void deactivate (ACE_ENV_SINGLE_ARG_DECL);
/// Obtain the Proxy's subscribed types.
- void subscribed_types (TAO_NS_EventTypeSeq& subscribed_types ACE_ENV_ARG_DECL);
+ void subscribed_types (TAO_Notify_EventTypeSeq& subscribed_types ACE_ENV_ARG_DECL);
/// Check if this event passes the admin and proxy filters.
- CORBA::Boolean check_filters (const TAO_NS_Event* event
- , TAO_NS_FilterAdmin& parent_filter_admin
+ CORBA::Boolean check_filters (const TAO_Notify_Event* event
+ , TAO_Notify_FilterAdmin& parent_filter_admin
, CosNotifyChannelAdmin::InterFilterGroupOperator filter_operator
ACE_ENV_ARG_DECL);
/// Check if this event passes the admin and proxy filters.
- CORBA::Boolean check_filters (const TAO_NS_Event_var &event
- , TAO_NS_FilterAdmin& parent_filter_admin
+ CORBA::Boolean check_filters (const TAO_Notify_Event_var &event
+ , TAO_Notify_FilterAdmin& parent_filter_admin
, CosNotifyChannelAdmin::InterFilterGroupOperator filter_operator
ACE_ENV_ARG_DECL);
/// Inform this proxy that the following types are being advertised.
- void types_changed (const TAO_NS_EventTypeSeq& added, const TAO_NS_EventTypeSeq& removed ACE_ENV_ARG_DECL);
+ void types_changed (const TAO_Notify_EventTypeSeq& added, const TAO_Notify_EventTypeSeq& removed ACE_ENV_ARG_DECL);
/// Have updates been turned off.
CORBA::Boolean updates_off (void);
@@ -79,10 +79,10 @@ public:
virtual void destroy (ACE_ENV_SINGLE_ARG_DECL) = 0;
/// Access our Peer.
- virtual TAO_NS_Peer* peer (void) = 0;
+ virtual TAO_Notify_Peer* peer (void) = 0;
/// Implement the Obtain Types.
- virtual CosNotification::EventTypeSeq* obtain_types (CosNotifyChannelAdmin::ObtainInfoMode mode, const TAO_NS_EventTypeSeq& types ACE_ENV_ARG_DECL)
+ virtual CosNotification::EventTypeSeq* obtain_types (CosNotifyChannelAdmin::ObtainInfoMode mode, const TAO_Notify_EventTypeSeq& types ACE_ENV_ARG_DECL)
ACE_THROW_SPEC ((
CORBA::SystemException
));
@@ -93,26 +93,26 @@ public:
ACE_ENV_ARG_DECL) = 0;
- /// Override, TAO_NS_Object::qos_changed
- virtual void qos_changed (const TAO_NS_QoSProperties& qos_properties);
+ /// Override, TAO_Notify_Object::qos_changed
+ virtual void qos_changed (const TAO_Notify_QoSProperties& qos_properties);
protected:
/// Filter Administration
- TAO_NS_FilterAdmin filter_admin_;
+ TAO_Notify_FilterAdmin filter_admin_;
/// The types that we're subscribed with the event manager.
- TAO_NS_EventTypeSeq subscribed_types_;
+ TAO_Notify_EventTypeSeq subscribed_types_;
/// True if updates have been turned off.
CORBA::Boolean updates_off_;
};
-typedef TAO_NS_Refcountable_Guard_T<TAO_NS_Proxy> TAO_NS_Proxy_Guard;
+typedef TAO_Notify_Refcountable_Guard_T<TAO_Notify_Proxy> TAO_Notify_Proxy_Guard;
#if defined (__ACE_INLINE__)
#include "Proxy.inl"
#endif /* __ACE_INLINE__ */
#include "ace/post.h"
-#endif /* TAO_NS_PROXY_H */
+#endif /* TAO_Notify_PROXY_H */