summaryrefslogtreecommitdiff
path: root/ace/Timer_Wheel_T.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'ace/Timer_Wheel_T.cpp')
-rw-r--r--ace/Timer_Wheel_T.cpp12
1 files changed, 7 insertions, 5 deletions
diff --git a/ace/Timer_Wheel_T.cpp b/ace/Timer_Wheel_T.cpp
index 149de55c520..f32b29b8853 100644
--- a/ace/Timer_Wheel_T.cpp
+++ b/ace/Timer_Wheel_T.cpp
@@ -1,7 +1,7 @@
// $Id$
-#ifndef ACE_TIMER_WHEEL_T_CPP
-#define ACE_TIMER_WHEEL_T_CPP
+#ifndef ACE_TIMER_WHEEL_T_C
+#define ACE_TIMER_WHEEL_T_C
#if !defined (ACE_LACKS_PRAGMA_ONCE)
# pragma once
@@ -12,7 +12,8 @@
#include "ace/Timer_Wheel_T.h"
#include "ace/Log_Msg.h"
-ACE_BEGIN_VERSIONED_NAMESPACE_DECL
+ACE_RCSID(ace, Timer_Wheel_T, "$Id$")
+
// Design/implementation notes for ACE_Timer_Wheel_T.
//
@@ -940,6 +941,7 @@ ACE_Timer_Wheel_Iterator_T<TYPE, FUNCTOR, ACE_LOCK>::goto_next (u_int start_spok
this->current_node_ = 0;
}
+
/**
* @return True when we there aren't any more items (when current_node_ == 0)
*/
@@ -949,6 +951,7 @@ ACE_Timer_Wheel_Iterator_T<TYPE, FUNCTOR, ACE_LOCK>::isdone (void) const
return this->current_node_ == 0;
}
+
/**
* @return The node at the current spokeition in the sequence or 0 if the wheel
* is empty
@@ -959,6 +962,5 @@ ACE_Timer_Wheel_Iterator_T<TYPE, FUNCTOR, ACE_LOCK>::item (void)
return this->current_node_;
}
-ACE_END_VERSIONED_NAMESPACE_DECL
-#endif /* ACE_TIMER_WHEEL_T_CPP */
+#endif /* ACE_TIMER_WHEEL_T_C */