diff options
author | schmidt <douglascraigschmidt@users.noreply.github.com> | 2002-05-26 18:34:11 +0000 |
---|---|---|
committer | schmidt <douglascraigschmidt@users.noreply.github.com> | 2002-05-26 18:34:11 +0000 |
commit | acd90df2c9df650d739e69a7343225890a9ae8d8 (patch) | |
tree | e082045051b41d69fcf6a5a1448d2392233a4744 /ace/Time_Value.h | |
parent | 9bc8886265189b10f59ad2e3c918ffe422005320 (diff) | |
download | ATCD-acd90df2c9df650d739e69a7343225890a9ae8d8.tar.gz |
ChangeLogTag:Sun May 26 13:20:15 2002 Douglas C. Schmidt <schmidt@tango.doc.wustl.edu>
Diffstat (limited to 'ace/Time_Value.h')
-rw-r--r-- | ace/Time_Value.h | 17 |
1 files changed, 8 insertions, 9 deletions
diff --git a/ace/Time_Value.h b/ace/Time_Value.h index c49a0fe2211..23d33c93cfa 100644 --- a/ace/Time_Value.h +++ b/ace/Time_Value.h @@ -47,7 +47,6 @@ #define ACE_ONE_SECOND_IN_USECS 1000000L #define ACE_ONE_SECOND_IN_NSECS 1000000000L - // ------------------------------------------------------------------- // These forward declarations are only used to circumvent a bug in // MSVC 6.0 compiler. They shouldn't cause any problem for other @@ -209,35 +208,35 @@ public: /// Adds two ACE_Time_Value objects together, returns the sum. friend ACE_OS_Export ACE_Time_Value operator + (const ACE_Time_Value &tv1, - const ACE_Time_Value &tv2); + const ACE_Time_Value &tv2); /// Subtracts two ACE_Time_Value objects, returns the difference. friend ACE_OS_Export ACE_Time_Value operator - (const ACE_Time_Value &tv1, - const ACE_Time_Value &tv2); + const ACE_Time_Value &tv2); /// True if tv1 < tv2. friend ACE_OS_Export int operator < (const ACE_Time_Value &tv1, - const ACE_Time_Value &tv2); + const ACE_Time_Value &tv2); /// True if tv1 > tv2. friend ACE_OS_Export int operator > (const ACE_Time_Value &tv1, - const ACE_Time_Value &tv2); + const ACE_Time_Value &tv2); /// True if tv1 <= tv2. friend ACE_OS_Export int operator <= (const ACE_Time_Value &tv1, - const ACE_Time_Value &tv2); + const ACE_Time_Value &tv2); /// True if tv1 >= tv2. friend ACE_OS_Export int operator >= (const ACE_Time_Value &tv1, - const ACE_Time_Value &tv2); + const ACE_Time_Value &tv2); /// True if tv1 == tv2. friend ACE_OS_Export int operator == (const ACE_Time_Value &tv1, - const ACE_Time_Value &tv2); + const ACE_Time_Value &tv2); /// True if tv1 != tv2. friend ACE_OS_Export int operator != (const ACE_Time_Value &tv1, - const ACE_Time_Value &tv2); + const ACE_Time_Value &tv2); /// Dump is a no-op. /** |