20 lines
293 B
C++
20 lines
293 B
C++
#ifndef QRCODEREADERBASE_H
|
|
#define QRCODEREADERBASE_H
|
|
|
|
#include <QObject>
|
|
#include <QRect>
|
|
|
|
class QRCodeReader: public QObject {
|
|
Q_OBJECT
|
|
|
|
public:
|
|
|
|
signals:
|
|
void codeReaded(QString code);
|
|
|
|
private:
|
|
void* m_qrCodeReader;
|
|
QRect m_cameraSize;
|
|
};
|
|
|
|
#endif // QRCODEREADERBASE_H
|