00001 #ifndef COMMON_H
00002 #define COMMON_H
00003
00004 #include <QDebug>
00005
00006 #ifndef MIN
00007 #define MIN(x, y) (((x) < (y)) ? (x) : (y))
00008 #endif
00009 #ifndef MAX
00010 #define MAX(x, y) (((x) > (y)) ? (x) : (y))
00011 #endif
00012
00013 #endif // COMMON_H