mirror of
https://github.com/seiichiro0185/sailotp.git
synced 2025-03-18 19:17:56 +00:00
16 lines
332 B
C++
16 lines
332 B
C++
#ifndef QQRENCODE_H
|
|
#define QQRENCODE_H
|
|
|
|
#include <QObject>
|
|
#include <QImage>
|
|
#include <QQuickImageProvider>
|
|
|
|
QT_BEGIN_NAMESPACE
|
|
|
|
class QQRencoder : public QQuickImageProvider {
|
|
public:
|
|
explicit QQRencoder();
|
|
virtual QImage requestImage(const QString &id, QSize *size, const QSize& requestedSize);
|
|
};
|
|
|
|
#endif // QQRENCODE_H
|