mirror of
https://github.com/zxing/zxing.git
synced 2024-11-13 06:24:06 -08:00
13 lines
246 B
C
13 lines
246 B
C
|
#ifndef QZXING_GLOBAL_H
|
||
|
#define QZXING_GLOBAL_H
|
||
|
|
||
|
#include <QtCore/qglobal.h>
|
||
|
|
||
|
#if defined(QZXING_LIBRARY)
|
||
|
# define QZXINGSHARED_EXPORT Q_DECL_EXPORT
|
||
|
#else
|
||
|
# define QZXINGSHARED_EXPORT Q_DECL_IMPORT
|
||
|
#endif
|
||
|
|
||
|
#endif // QZXING_GLOBAL_H
|