File indexing completed on 2024-11-24 04:44:41
0001 /* 0002 * SPDX-FileCopyrightText: 2021 Volker Krause <vkrause@kde.org> 0003 * SPDX-License-Identifier: LGPL-2.0-or-later 0004 */ 0005 0006 #ifndef ZLIB_P_H 0007 #define ZLIB_P_H 0008 0009 class QByteArray; 0010 0011 /** Zlib convenience methods. */ 0012 namespace Zlib 0013 { 0014 QByteArray decompressZlib(const QByteArray &data); 0015 QByteArray decompressDeflate(const QByteArray &data); 0016 } 0017 0018 #endif // ZLIB_P_H