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

0001 /*
0002     SPDX-FileCopyrightText: 2022 Volker Krause <vkrause@kde.org>
0003     SPDX-License-Identifier: MIT
0004 */
0005 
0006 #ifndef PRISON_FORMAT_P_H
0007 #define PRISON_FORMAT_P_H
0008 
0009 #include "format.h"
0010 
0011 #include <ZXing/BarcodeFormat.h>
0012 
0013 namespace Prison
0014 {
0015 namespace Format
0016 {
0017 
0018 ZXing::BarcodeFormats toZXing(BarcodeFormats formats);
0019 BarcodeFormat toFormat(ZXing::BarcodeFormat format);
0020 
0021 }
0022 }
0023 
0024 #endif // PRISON_FORMAT_H