Yuhang Zhao
2023-12-06 0287f19b3eabf6b6632d51c0288e6cf0be2c5e69
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
#ifndef QWKSTYLESUPPORTGLOBAL_H
#define QWKSTYLESUPPORTGLOBAL_H
 
#include <QtCore/QtGlobal>
 
#ifndef QWK_STYLESUPPORT_EXPORT
#  ifdef QWK_STYLESUPPORT_STATIC
#    define QWK_STYLESUPPORT_EXPORT
#  else
#    ifdef QWK_STYLESUPPORT_LIBRARY
#      define QWK_STYLESUPPORT_EXPORT Q_DECL_EXPORT
#    else
#      define QWK_STYLESUPPORT_EXPORT Q_DECL_IMPORT
#    endif
#  endif
#endif
 
#endif // QWKSTYLESUPPORTGLOBAL_H