123456789101112131415161718192021222324252627282930313233343536373839404142434445464748 |
- #ifndef QMQTT_GLOBAL_H
- #define QMQTT_GLOBAL_H
- #include <QtGlobal>
- #if !defined(QT_STATIC) && !defined(MQTT_PROJECT_INCLUDE_SRC)
- # if defined(QT_BUILD_QMQTT_LIB)
- # define Q_MQTT_EXPORT Q_DECL_EXPORT
- # else
- # define Q_MQTT_EXPORT Q_DECL_IMPORT
- # endif
- #else
- # define Q_MQTT_EXPORT
- #endif
- #endif
|