File indexing completed on 2024-11-24 04:44:40
0001 /* 0002 * SPDX-FileCopyrightText: 2021 Volker Krause <vkrause@kde.org> 0003 * SPDX-License-Identifier: LGPL-2.0-or-later 0004 */ 0005 0006 #ifndef NLBASE45_H 0007 #define NLBASE45_H 0008 0009 class QByteArray; 0010 0011 /** NL COVID-19 CoronaCheck uses a modified Base45 encoding... */ 0012 namespace NLBase45 0013 { 0014 QByteArray decode(const char *begin, const char *end); 0015 }; 0016 0017 #endif // NLBASE45_H