diff options
author | bala <balanatarajan@users.noreply.github.com> | 2002-07-07 00:19:33 +0000 |
---|---|---|
committer | bala <balanatarajan@users.noreply.github.com> | 2002-07-07 00:19:33 +0000 |
commit | 7769feeb9f87bac066af6ecd3dd9540e5a57e0b5 (patch) | |
tree | 6d7a10ebc1b49d9a7d3ff34d4584bc2185e8f978 /ace/Time_Value.h | |
parent | e70af0c4f55129ce5cda5cd27f0739db6fd00e89 (diff) | |
download | ATCD-7769feeb9f87bac066af6ecd3dd9540e5a57e0b5.tar.gz |
ChangeLogTag:Sat Jul 06 19:32:40 2002 Balachandran Natarajan <bala@cs.wustl.edu>
Diffstat (limited to 'ace/Time_Value.h')
-rw-r--r-- | ace/Time_Value.h | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/ace/Time_Value.h b/ace/Time_Value.h index 23d33c93cfa..97d82ca67ee 100644 --- a/ace/Time_Value.h +++ b/ace/Time_Value.h @@ -238,6 +238,13 @@ public: friend ACE_OS_Export int operator != (const ACE_Time_Value &tv1, const ACE_Time_Value &tv2); + /// Multiplies the time value by <d> + friend ACE_OS_Export ACE_Time_Value operator * (double d, + const ACE_Time_Value &tv); + + friend ACE_OS_Export ACE_Time_Value operator * (const ACE_Time_Value &tv, + double d); + /// Dump is a no-op. /** * The dump() method is a no-op. It's here for backwards compatibility |