summaryrefslogtreecommitdiff
path: root/TAO/orbsvcs/orbsvcs/Time_Utilities.h
diff options
context:
space:
mode:
Diffstat (limited to 'TAO/orbsvcs/orbsvcs/Time_Utilities.h')
-rw-r--r--TAO/orbsvcs/orbsvcs/Time_Utilities.h24
1 files changed, 12 insertions, 12 deletions
diff --git a/TAO/orbsvcs/orbsvcs/Time_Utilities.h b/TAO/orbsvcs/orbsvcs/Time_Utilities.h
index 8c6e8b99ac4..08cebddfe64 100644
--- a/TAO/orbsvcs/orbsvcs/Time_Utilities.h
+++ b/TAO/orbsvcs/orbsvcs/Time_Utilities.h
@@ -51,15 +51,15 @@ public:
//@{
// We interpret an ACE_hrtime_t as nanoseconds.
- /// @brief Convert relative high-resolution time to a TimeBase::TimeT.
+ /// @brief Convert relative high-resolution time to a <TimeBase::TimeT>.
static void hrtime_to_TimeT (TimeBase::TimeT &lhs,
ACE_hrtime_t rhs);
- /// @brief Convert relative TimeBase::TimeT to a high-resolution time.
+ /// @brief Convert relative <TimeBase::TimeT> to a high-resolution time.
static void TimeT_to_hrtime (ACE_hrtime_t &lhs,
const TimeBase::TimeT &rhs);
- /// @brief Convert relative TimeBase::TimeT to a high-resolution time.
+ /// @brief Convert relative <TimeBase::TimeT> to a high-resolution time.
static ACE_hrtime_t to_hrtime (const TimeBase::TimeT &t);
//@}
@@ -68,35 +68,35 @@ public:
* @name ACE_Time_Value conversion routines
*/
//@{
- // Recall that ACE_Time_Values are <seconds, useconds> pairs.
+ // Recall that <ACE_Time_Value>s are <seconds, useconds> pairs.
- /// @brief Convert relative ACE_Time_Value to a TimeBase::TimeT.
+ /// @brief Convert relative <ACE_Time_Value> to a <TimeBase::TimeT>.
static void Time_Value_to_TimeT (TimeBase::TimeT& lhs,
const ACE_Time_Value& rhs);
- /// @brief Convert relative TimeBase::TimeT to a ACE_Time_Value.
+ /// @brief Convert relative <TimeBase::TimeT> to a <ACE_Time_Value>.
static void TimeT_to_Time_Value (ACE_Time_Value& lrs,
const TimeBase::TimeT& rhs);
- /// @brief Convert relative ACE_Time_Value to a TimeBase::TimeT
+ /// @brief Convert relative <ACE_Time_Value> to a <TimeBase::TimeT>
static TimeBase::TimeT to_TimeT (const ACE_Time_Value& rhs);
- /// @brief Convert relative TimeBase::TimeT to a ACE_Time_Value.
+ /// @brief Convert relative <TimeBase::TimeT> to a <ACE_Time_Value>.
static ACE_Time_Value to_Time_Value (const TimeBase::TimeT &rhs);
- /// @brief Convert absolute ACE_Time_Value to a TimeBase::TimeT
+ /// @brief Convert absolute <ACE_Time_Value> to a <TimeBase::TimeT>
static void Absolute_Time_Value_to_TimeT (TimeBase::TimeT& lhs,
const ACE_Time_Value& rhs);
- /// @brief Convert absolute TimeBase::TimeT to a ACE_Time_Value
+ /// @brief Convert absolute <TimeBase::TimeT> to a <ACE_Time_Value>
static void Absolute_TimeT_to_Time_Value (ACE_Time_Value& lrs,
const TimeBase::TimeT& rhs);
- /// @brief Convert absolute ACE_Time_Value to a TimeBase::TimeT
+ /// @brief Convert absolute <ACE_Time_Value> to a <TimeBase::TimeT>
static TimeBase::TimeT to_Absolute_TimeT (const ACE_Time_Value& rhs);
- /// @brief Convert absolute TimeBase::TimeT to a ACE_Time_Value.
+ /// @brief Convert absolute <TimeBase::TimeT> to a <ACE_Time_Value>.
static ACE_Time_Value to_Absolute_Time_Value (const TimeBase::TimeT &rhs);
//@}