00001 #ifndef MYTHEXP_H_
00002 #define MYTHEXP_H_
00003
00004 #include <QtCore/qglobal.h>
00005
00006 #if defined(MYTH_API) || defined(MPLUGIN_API)
00007 # define MPUBLIC Q_DECL_EXPORT
00008 #else
00009 # define MPUBLIC 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 #else
00017 # define MHIDDEN
00018 # define MUNUSED
00019 # define MDEPRECATED
00020 #endif
00021
00022 #endif // MYTHEXP_H_