#include "ace/Truncate.h"Include dependency graph for Time_Value.inl:

This graph shows which files directly or indirectly include this file:

Go to the source code of this file.
Functions | |
| ACE_INLINE ACE_Time_Value | operator * (double d, const ACE_Time_Value &tv) |
| ACE_INLINE ACE_Time_Value | operator * (const ACE_Time_Value &tv, double d) |
| ACE_INLINE bool | operator> (const ACE_Time_Value &tv1, const ACE_Time_Value &tv2) |
| ACE_INLINE bool | operator>= (const ACE_Time_Value &tv1, const ACE_Time_Value &tv2) |
| ACE_INLINE bool | operator< (const ACE_Time_Value &tv1, const ACE_Time_Value &tv2) |
| ACE_INLINE bool | operator<= (const ACE_Time_Value &tv1, const ACE_Time_Value &tv2) |
| ACE_INLINE bool | operator== (const ACE_Time_Value &tv1, const ACE_Time_Value &tv2) |
| ACE_INLINE bool | operator!= (const ACE_Time_Value &tv1, const ACE_Time_Value &tv2) |
| ACE_INLINE ACE_Time_Value | operator+ (const ACE_Time_Value &tv1, const ACE_Time_Value &tv2) |
| ACE_INLINE ACE_Time_Value | operator- (const ACE_Time_Value &tv1, const ACE_Time_Value &tv2) |
|
||||||||||||
|
Definition at line 220 of file Time_Value.inl. References ACE_Time_Value.
00221 {
00222 return ACE_Time_Value (tv) *= d;
00223 }
|
|
||||||||||||
|
Definition at line 214 of file Time_Value.inl. References ACE_Time_Value.
00215 {
00216 return ACE_Time_Value (tv) *= d;
00217 }
|
|
||||||||||||
|
Definition at line 314 of file Time_Value.inl.
00316 {
00317 // ACE_OS_TRACE ("operator !=");
00318 return !(tv1 == tv2);
00319 }
|
|
||||||||||||
|
Definition at line 382 of file Time_Value.inl.
00384 {
00385 // ACE_OS_TRACE ("operator +");
00386 ACE_Time_Value sum (tv1);
00387 sum += tv2;
00388
00389 return sum;
00390 }
|
|
||||||||||||
|
Definition at line 395 of file Time_Value.inl.
00397 {
00398 // ACE_OS_TRACE ("operator -");
00399 ACE_Time_Value delta (tv1);
00400 delta -= tv2;
00401
00402 return delta;
00403 }
|
|
||||||||||||
|
Definition at line 283 of file Time_Value.inl.
00285 {
00286 // ACE_OS_TRACE ("operator <");
00287 return tv2 > tv1;
00288 }
|
|
||||||||||||
|
Definition at line 293 of file Time_Value.inl.
00295 {
00296 // ACE_OS_TRACE ("operator <=");
00297 return tv2 >= tv1;
00298 }
|
|
||||||||||||
|
Definition at line 303 of file Time_Value.inl. References ACE_Time_Value::sec(), and ACE_Time_Value::usec().
|
|
||||||||||||
|
Definition at line 228 of file Time_Value.inl. References ACE_Time_Value::sec(), and ACE_Time_Value::usec().
|
|
||||||||||||
|
Definition at line 244 of file Time_Value.inl. References ACE_Time_Value::sec(), and ACE_Time_Value::usec().
|
1.3.6