mirror of https://github.com/status-im/qzxing.git
Fix private include (#147)
Fix private include to avoid failure for some build systems.
This commit is contained in:
parent
1b10ebf2ea
commit
686454f869
|
@ -18,7 +18,6 @@
|
||||||
#define QZXING_H
|
#define QZXING_H
|
||||||
|
|
||||||
#include "QZXing_global.h"
|
#include "QZXing_global.h"
|
||||||
#include "zxing/ZXing.h"
|
|
||||||
|
|
||||||
#include <QObject>
|
#include <QObject>
|
||||||
#include <QImage>
|
#include <QImage>
|
||||||
|
@ -102,10 +101,10 @@ public:
|
||||||
EncodeErrorCorrectionLevel_H
|
EncodeErrorCorrectionLevel_H
|
||||||
};
|
};
|
||||||
|
|
||||||
QZXing(QObject *parent = ZXING_NULLPTR);
|
QZXing(QObject *parent = Q_NULLPTR);
|
||||||
~QZXing();
|
~QZXing();
|
||||||
|
|
||||||
QZXing(DecoderFormat decodeHints, QObject *parent = ZXING_NULLPTR);
|
QZXing(DecoderFormat decodeHints, QObject *parent = Q_NULLPTR);
|
||||||
|
|
||||||
#ifdef QZXING_QML
|
#ifdef QZXING_QML
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue