mirror of
https://github.com/zxing/zxing.git
synced 2024-11-11 13:34:08 -08:00
f9244cdd30
git-svn-id: https://zxing.googlecode.com/svn/trunk@2089 59b500cc-1b3d-0410-9834-0bbf25fbcc57
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
|