17 lines
370 B
C++
17 lines
370 B
C++
#ifndef QRCODEUTILS_H
|
|
#define QRCODEUTILS_H
|
|
|
|
#include <QString>
|
|
|
|
#include "qrcodegen.hpp"
|
|
|
|
namespace qrCodeUtils
|
|
{
|
|
constexpr const qint16 qrMagicCode = 1984;
|
|
|
|
QList<QString> generateQrCodeImageSeries(const QByteArray &data);
|
|
qrcodegen::QrCode generateQrCode(const QByteArray &data);
|
|
QString svgToBase64(const QString &image);
|
|
};
|
|
|
|
#endif // QRCODEUTILS_H
|