LibCompress: Add a forwarding header

Currently, just with the types needed for the w3c Compression spec.
This commit is contained in:
Timothy Flynn 2024-11-15 13:22:01 -05:00 committed by Andreas Kling
parent a91af764f6
commit b11fdea175
Notes: github-actions[bot] 2024-11-17 22:22:44 +00:00

View file

@ -0,0 +1,18 @@
/*
* Copyright (c) 2024, Tim Flynn <trflynn89@ladybird.org>
*
* SPDX-License-Identifier: BSD-2-Clause
*/
#pragma once
namespace Compress {
class DeflateCompressor;
class DeflateDecompressor;
class GzipCompressor;
class GzipDecompressor;
class ZlibCompressor;
class ZlibDecompressor;
}