summaryrefslogtreecommitdiff
path: root/TAO/orbsvcs/orbsvcs/Notify/Timer_Queue.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'TAO/orbsvcs/orbsvcs/Notify/Timer_Queue.cpp')
-rw-r--r--TAO/orbsvcs/orbsvcs/Notify/Timer_Queue.cpp13
1 files changed, 9 insertions, 4 deletions
diff --git a/TAO/orbsvcs/orbsvcs/Notify/Timer_Queue.cpp b/TAO/orbsvcs/orbsvcs/Notify/Timer_Queue.cpp
index b083b78b6e8..c4ef3fbb87f 100644
--- a/TAO/orbsvcs/orbsvcs/Notify/Timer_Queue.cpp
+++ b/TAO/orbsvcs/orbsvcs/Notify/Timer_Queue.cpp
@@ -4,6 +4,8 @@
ACE_RCSID (Notify, TAO_Notify_Timer_Queue, "$Id$")
+TAO_BEGIN_VERSIONED_NAMESPACE_DECL
+
TAO_Notify_Timer_Queue::TAO_Notify_Timer_Queue (void)
{
}
@@ -24,10 +26,11 @@ TAO_Notify_Timer_Queue::schedule_timer (ACE_Event_Handler *handler,
const ACE_Time_Value &delay_time,
const ACE_Time_Value &interval)
{
- return this->timer_queue_.schedule (handler,
- 0,
- timer_queue_.gettimeofday () + delay_time,
- interval);
+ return
+ this->timer_queue_.schedule (handler,
+ 0,
+ timer_queue_.gettimeofday () + delay_time,
+ interval);
}
int
@@ -41,3 +44,5 @@ TAO_Notify_Timer_Queue::impl (void)
{
return this->timer_queue_;
}
+
+TAO_END_VERSIONED_NAMESPACE_DECL