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.cpp15
1 files changed, 5 insertions, 10 deletions
diff --git a/TAO/orbsvcs/orbsvcs/Notify/Timer_Queue.cpp b/TAO/orbsvcs/orbsvcs/Notify/Timer_Queue.cpp
index 642f313f2f3..b083b78b6e8 100644
--- a/TAO/orbsvcs/orbsvcs/Notify/Timer_Queue.cpp
+++ b/TAO/orbsvcs/orbsvcs/Notify/Timer_Queue.cpp
@@ -1,11 +1,9 @@
// $Id$
-#include "orbsvcs/Notify/Timer_Queue.h"
+#include "Timer_Queue.h"
ACE_RCSID (Notify, TAO_Notify_Timer_Queue, "$Id$")
-TAO_BEGIN_VERSIONED_NAMESPACE_DECL
-
TAO_Notify_Timer_Queue::TAO_Notify_Timer_Queue (void)
{
}
@@ -26,11 +24,10 @@ 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
@@ -44,5 +41,3 @@ TAO_Notify_Timer_Queue::impl (void)
{
return this->timer_queue_;
}
-
-TAO_END_VERSIONED_NAMESPACE_DECL