File indexing completed on 2024-05-12 04:01:31

0001 /*
0002     SPDX-FileCopyrightText: 2020 Laurent Montel <montel@kde.org>
0003 
0004     SPDX-License-Identifier: MIT
0005 */
0006 
0007 #ifndef BARCODEUTIL_H
0008 #define BARCODEUTIL_H
0009 #include <QList>
0010 namespace Prison
0011 {
0012 namespace BarCodeUtil
0013 {
0014 QList<bool> barSequence(const char *str);
0015 
0016 QByteArray asLatin1ByteArray(const QVariant &data);
0017 }
0018 }
0019 
0020 #endif // BARCODEUTIL_H