mirror of
https://github.com/status-im/qzxing.git
synced 2025-01-12 12:04:36 +00:00
14 lines
245 B
C
14 lines
245 B
C
#ifndef QZXING_GLOBAL_H
|
|
#define QZXING_GLOBAL_H
|
|
|
|
#include <QtCore>
|
|
#include <qglobal.h>
|
|
|
|
#if defined(QZXING_LIBRARY)
|
|
# define QZXINGSHARED_EXPORT Q_DECL_EXPORT
|
|
#else
|
|
# define QZXINGSHARED_EXPORT Q_DECL_IMPORT
|
|
#endif
|
|
|
|
#endif //QZXING_GLOBAL_H
|