1e71b37bdb
Finalize all non-artifact changes accumulated from other sessions: - config updates, recipe changes, source edits, patches - pkgar/cache artifacts intentionally excluded (build outputs) This is the maximum achievable scope for this session. Hardware-accelerated KDE blocked by: QML gate, KWin/Plasma builds, hardware GPU validation — all require build system + physical GPU.
21 lines
334 B
C++
21 lines
334 B
C++
/*
|
|
SPDX-FileCopyrightText: 2020 Laurent Montel <montel@kde.org>
|
|
|
|
SPDX-License-Identifier: MIT
|
|
*/
|
|
|
|
#ifndef BARCODEUTIL_H
|
|
#define BARCODEUTIL_H
|
|
#include <QList>
|
|
namespace Prison
|
|
{
|
|
namespace BarCodeUtil
|
|
{
|
|
QList<bool> barSequence(const char *str);
|
|
|
|
QByteArray asLatin1ByteArray(const QVariant &data);
|
|
}
|
|
}
|
|
|
|
#endif // BARCODEUTIL_H
|