revert to run success
This commit is contained in:
parent
f9138d34c4
commit
36b74ad685
59 changed files with 3698 additions and 12 deletions
20
client/platforms/macos/QRCodeReaderBase.h
Normal file
20
client/platforms/macos/QRCodeReaderBase.h
Normal file
|
|
@ -0,0 +1,20 @@
|
|||
#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
|
||||
Loading…
Add table
Add a link
Reference in a new issue