This graph shows which files directly or indirectly include this file:
Go to the source code of this file.
Defines | |
#define | ACE_MIN(a, b) ace_min((a),(b)) |
#define | ACE_MAX(a, b) ace_max((a),(b)) |
#define | ACE_RANGE(a, b, c) ace_range((a),(b),(c)) |
Functions | |
template<class T> ACE_BEGIN_VERSIONED_NAMESPACE_DECL const T & | ace_min (const T &t1, const T &t2) |
template<class T> const T & | ace_max (const T &t1, const T &t2) |
template<class T> const T & | ace_min (const T &t1, const T &t2, const T &t3) |
template<class T> const T & | ace_max (const T &t1, const T &t2, const T &t3) |
template<class T> const T & | ace_range (const T &min, const T &max, const T &val) |
Define an appropriate set of min()/max() functions using templates.
Definition in file Min_Max.h.
|
|
Definition at line 65 of file Min_Max.h. Referenced by ACE_FIFO_Recv_Msg::recv(), and ACE_OS::thr_create(). |
|
|
|
Definition at line 51 of file Min_Max.h. References ace_max(). Referenced by ACE_String_Base< CHAR >::append().
00052 { 00053 return ace_max (ace_max (t1, t2), t3); 00054 } |
|
Definition at line 37 of file Min_Max.h. Referenced by ace_max(), and ace_range().
00038 {
00039 return t1 > t2 ? t1 : t2;
00040 }
|
|
Definition at line 44 of file Min_Max.h. References ace_min(). Referenced by ace_range(), and ACE_String_Base< CHAR >::compare().
00045 { 00046 return ace_min (ace_min (t1, t2), t3); 00047 } |
|
Definition at line 30 of file Min_Max.h. Referenced by ace_min().
00031 {
00032 return t2 > t1 ? t1 : t2;
00033 }
|
|
Definition at line 58 of file Min_Max.h. References ace_max(), and ace_min().
00059 { 00060 return ace_min (ace_max (min, val), max); 00061 } |