- #ifndef __IMT_DEFINES__
- #define __IMT_DEFINES__
- #include <QtGlobal>
- #ifdef Q_OS_WIN
- #ifdef MATH_DLL_EXPORTS
- #define IMPORTEXPORT __declspec(dllexport)
- #else
- #define IMPORTEXPORT __declspec(dllimport)
- #endif
- #elif defined Q_OS_LINUX
- #define IMPORTEXPORT __attribute__ ((visibility("default")))
- #endif
- #endif
|