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 int | operator> (const ACE_Time_Value &tv1, const ACE_Time_Value &tv2) |
| ACE_INLINE int | operator>= (const ACE_Time_Value &tv1, const ACE_Time_Value &tv2) |
| ACE_INLINE int | operator< (const ACE_Time_Value &tv1, const ACE_Time_Value &tv2) |
| ACE_INLINE int | operator<= (const ACE_Time_Value &tv1, const ACE_Time_Value &tv2) |
| ACE_INLINE int | operator== (const ACE_Time_Value &tv1, const ACE_Time_Value &tv2) |
| ACE_INLINE int | 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 173 of file Time_Value.inl.
00174 {
00175 return ACE_Time_Value (tv) *= d;
00176 }
|
|
||||||||||||
|
Definition at line 167 of file Time_Value.inl.
00168 {
00169 return ACE_Time_Value (tv) *= d;
00170 }
|
|
||||||||||||
|
Definition at line 273 of file Time_Value.inl.
00275 {
00276 // ACE_OS_TRACE ("operator !=");
00277 return !(tv1 == tv2);
00278 }
|
|
||||||||||||
|
Definition at line 307 of file Time_Value.inl. References ACE_Time_Value::normalize, ACE_Time_Value::sec, and ACE_Time_Value::usec.
|
|
||||||||||||
|
Definition at line 321 of file Time_Value.inl. References ACE_Time_Value::normalize, ACE_Time_Value::sec, and ACE_Time_Value::usec.
|
|
||||||||||||
|
Definition at line 242 of file Time_Value.inl.
00244 {
00245 // ACE_OS_TRACE ("operator <");
00246 return tv2 > tv1;
00247 }
|
|
||||||||||||
|
Definition at line 252 of file Time_Value.inl.
00254 {
00255 // ACE_OS_TRACE ("operator <=");
00256 return tv2 >= tv1;
00257 }
|
|
||||||||||||
|
Definition at line 262 of file Time_Value.inl. References ACE_Time_Value::sec, and ACE_Time_Value::usec.
|
|
||||||||||||
|
Definition at line 181 of file Time_Value.inl. References ACE_Time_Value::sec, and ACE_Time_Value::usec.
|
|
||||||||||||
|
Definition at line 197 of file Time_Value.inl. References ACE_Time_Value::sec, and ACE_Time_Value::usec.
|
1.2.14 written by Dimitri van Heesch,
© 1997-2002