summaryrefslogtreecommitdiff
path: root/TAO/orbsvcs/orbsvcs/Notify/Timer_Reactor.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'TAO/orbsvcs/orbsvcs/Notify/Timer_Reactor.cpp')
-rw-r--r--TAO/orbsvcs/orbsvcs/Notify/Timer_Reactor.cpp6
1 files changed, 5 insertions, 1 deletions
diff --git a/TAO/orbsvcs/orbsvcs/Notify/Timer_Reactor.cpp b/TAO/orbsvcs/orbsvcs/Notify/Timer_Reactor.cpp
index d591dc652b9..0bc8d56bc1e 100644
--- a/TAO/orbsvcs/orbsvcs/Notify/Timer_Reactor.cpp
+++ b/TAO/orbsvcs/orbsvcs/Notify/Timer_Reactor.cpp
@@ -11,6 +11,8 @@ ACE_RCSID (Notify,
#include "ace/Reactor.h"
+TAO_BEGIN_VERSIONED_NAMESPACE_DECL
+
TAO_Notify_Timer_Reactor::TAO_Notify_Timer_Reactor (void)
:reactor_ (0)
{
@@ -36,7 +38,7 @@ TAO_Notify_Timer_Reactor::schedule_timer (ACE_Event_Handler *handler,
const ACE_Time_Value &delay_time,
const ACE_Time_Value &interval)
{
- return this->reactor_->schedule_timer (handler, 0, delay_time, interval);
+ return this->reactor_->schedule_timer (handler, 0, delay_time, interval);
}
int
@@ -44,3 +46,5 @@ TAO_Notify_Timer_Reactor::cancel_timer (long timer_id)
{
return this->reactor_->cancel_timer (timer_id);
}
+
+TAO_END_VERSIONED_NAMESPACE_DECL