summaryrefslogtreecommitdiff
path: root/TAO/orbsvcs/orbsvcs/Notify/Event.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'TAO/orbsvcs/orbsvcs/Notify/Event.cpp')
-rw-r--r--TAO/orbsvcs/orbsvcs/Notify/Event.cpp30
1 files changed, 15 insertions, 15 deletions
diff --git a/TAO/orbsvcs/orbsvcs/Notify/Event.cpp b/TAO/orbsvcs/orbsvcs/Notify/Event.cpp
index cde5a019832..4c06515781f 100644
--- a/TAO/orbsvcs/orbsvcs/Notify/Event.cpp
+++ b/TAO/orbsvcs/orbsvcs/Notify/Event.cpp
@@ -6,12 +6,12 @@
#include "Event.inl"
#endif /* __ACE_INLINE__ */
-ACE_RCSID(Notify, TAO_NS_Event, "$Id$")
+ACE_RCSID(Notify, TAO_Notify_Event, "$Id$")
#include "tao/debug.h"
#include "orbsvcs/CosNotificationC.h"
-TAO_NS_Event::TAO_NS_Event (void)
+TAO_Notify_Event::TAO_Notify_Event (void)
:priority_ (CosNotification::Priority, CosNotification::DefaultPriority),
timeout_ (CosNotification::Timeout)
{
@@ -19,14 +19,14 @@ TAO_NS_Event::TAO_NS_Event (void)
// ACE_DEBUG ((LM_DEBUG,"event:%x created\n", this ));
}
-TAO_NS_Event::~TAO_NS_Event ()
+TAO_Notify_Event::~TAO_Notify_Event ()
{
// if (TAO_debug_level > 1)
// ACE_DEBUG ((LM_DEBUG,"event:%x destroyed\n", this ));
}
void
-TAO_NS_Event::translate (const CORBA::Any& any, CosNotification::StructuredEvent& notification)
+TAO_Notify_Event::translate (const CORBA::Any& any, CosNotification::StructuredEvent& notification)
{
notification.remainder_of_body <<= any;
notification.header.fixed_header.event_type.type_name = CORBA::string_dup ("%ANY");
@@ -34,25 +34,25 @@ TAO_NS_Event::translate (const CORBA::Any& any, CosNotification::StructuredEvent
}
void
-TAO_NS_Event::translate (const CosNotification::StructuredEvent& notification, CORBA::Any& any)
+TAO_Notify_Event::translate (const CosNotification::StructuredEvent& notification, CORBA::Any& any)
{
any <<= notification; // is the typecode set by this operation or do we need to set it explicity.
}
#if defined (ACE_HAS_EXPLICIT_TEMPLATE_INSTANTIATION)
-template class ACE_Auto_Basic_Ptr<TAO_NS_Event>;
-template class ACE_Refcounted_Auto_Ptr<const TAO_NS_Event, TAO_SYNCH_MUTEX>;
-template class ACE_Unbounded_Queue<TAO_NS_Event_var>;
-template class ACE_Node<TAO_NS_Event_var>;
-template class ACE_Unbounded_Queue_Iterator<TAO_NS_Event_var>;
+template class ACE_Auto_Basic_Ptr<TAO_Notify_Event>;
+template class ACE_Refcounted_Auto_Ptr<const TAO_Notify_Event, TAO_SYNCH_MUTEX>;
+template class ACE_Unbounded_Queue<TAO_Notify_Event_var>;
+template class ACE_Node<TAO_Notify_Event_var>;
+template class ACE_Unbounded_Queue_Iterator<TAO_Notify_Event_var>;
#elif defined (ACE_HAS_TEMPLATE_INSTANTIATION_PRAGMA)
-#pragma instantiate ACE_Auto_Basic_Ptr<TAO_NS_Event>
-#pragma instantiate ACE_Refcounted_Auto_Ptr<const TAO_NS_Event, TAO_SYNCH_MUTEX>
-#pragma instantiate ACE_Unbounded_Queue<TAO_NS_Event_var>
-#pragma instantiate ACE_Node<TAO_NS_Event_var>
-#pragma instantiate ACE_Unbounded_Queue_Iterator<TAO_NS_Event_var>
+#pragma instantiate ACE_Auto_Basic_Ptr<TAO_Notify_Event>
+#pragma instantiate ACE_Refcounted_Auto_Ptr<const TAO_Notify_Event, TAO_SYNCH_MUTEX>
+#pragma instantiate ACE_Unbounded_Queue<TAO_Notify_Event_var>
+#pragma instantiate ACE_Node<TAO_Notify_Event_var>
+#pragma instantiate ACE_Unbounded_Queue_Iterator<TAO_Notify_Event_var>
#endif /*ACE_HAS_EXPLICIT_TEMPLATE_INSTANTIATION */