00001 #ifndef MYTHUIEXP_H_
00002 #define MYTHUIEXP_H_
00003
00004 #include <QtCore/qglobal.h>
00005
00006 #ifdef MUI_API
00007 # define MUI_PUBLIC Q_DECL_EXPORT
00008 #else
00009 # define MUI_PUBLIC Q_DECL_IMPORT
00010 #endif
00011
00012 #if ((__GNUC__ > 4) || ((__GNUC__ == 4) && (__GNUC_MINOR__ >= 2)))
00013 # define MHIDDEN __attribute__((visibility("hidden")))
00014 # define MUNUSED __attribute__((unused))
00015 # define MDEPRECATED __attribute__((deprecated))
00016 # define MUNUSED_RESULT __attribute__((warn_unused_result))
00017 #else
00018 # define MHIDDEN
00019 # define MUNUSED
00020 # define MDEPRECATED
00021 # define MUNUSED_RESULT
00022 #endif
00023
00024 #endif // MYTHUIEXP_H_