4 #if defined _WIN32 || defined __CYGWIN__
5 #define QT_COLLIDER_IMPORT __declspec(dllimport)
6 #define QT_COLLIDER_EXPORT __declspec(dllexport)
9 #define QT_COLLIDER_IMPORT __attribute__ ((visibility("default")))
10 #define QT_COLLIDER_EXPORT __attribute__ ((visibility("default")))
12 #define QT_COLLIDER_IMPORT
13 #define QT_COLLIDER_EXPORT
17 #ifdef QT_COLLIDER_EXPORTING // if QtCollider is being built, instead of used
18 #define QC_PUBLIC QT_COLLIDER_EXPORT
20 #define QC_PUBLIC QT_COLLIDER_IMPORT