mirror of
https://github.com/amnezia-vpn/amnezia-client.git
synced 2026-06-24 02:00:24 +07:00
Merge to dev branch
This commit is contained in:
@@ -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
|
||||
Reference in New Issue
Block a user