| /*! | |
| ************************************************************************ | |
| * \file | |
| * minmax.h | |
| * \brief | |
| * defines min and max macros for non WIN32 environments | |
| ************************************************************************ | |
| */ | |
| #ifndef _MINMAX_ | |
| #define _MINMAX_ | |
| #if !defined(WIN32) || defined(__GNUC__) | |
| #endif | |
| #endif | |