mirror of
https://github.com/zxing/zxing.git
synced 2024-11-11 05:24:06 -08:00
f78c18671b
By V1.2 support to Aztec codes is added. It now fully supports Qt Quick. Symbian Examples are updated to comply with the changes. git-svn-id: https://zxing.googlecode.com/svn/trunk@2296 59b500cc-1b3d-0410-9834-0bbf25fbcc57
14 lines
258 B
C
14 lines
258 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
|