define.h 342 B

12345678910111213141516
  1. #ifndef __IMT_DEFINES__
  2. #define __IMT_DEFINES__
  3. #include <QtGlobal>
  4. #ifdef Q_OS_WIN
  5. #ifdef MATH_DLL_EXPORTS
  6. #define IMPORTEXPORT __declspec(dllexport)
  7. #else
  8. #define IMPORTEXPORT __declspec(dllimport)
  9. #endif
  10. #elif defined Q_OS_LINUX
  11. #define IMPORTEXPORT __attribute__ ((visibility("default")))
  12. #endif
  13. #endif