chxavminmax.h
上传用户:zhongxx05
上传日期:2007-06-06
资源大小:33641k
文件大小:1k
- /*============================================================================*
- *
- * (c) 1995-2002 RealNetworks, Inc. Patents pending. All rights reserved.
- *
- *============================================================================*/
-
- #ifndef minmax_h
- #define minmax_h
- #ifdef min
- #undef min
- #endif
- template<class T>
- inline const T& min(const T& a, const T& b)
- {
- return a < b ? a : b;
- }
- #ifdef max
- #undef max
- #endif
- template<class T>
- inline const T& max(const T& a, const T& b)
- {
- return a > b ? a : b;
- }
- #endif /* minmax_h */