mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-08-07 00:29:15 +00:00
LibCompress: Add a forwarding header
Currently, just with the types needed for the w3c Compression spec.
This commit is contained in:
parent
a91af764f6
commit
b11fdea175
Notes:
github-actions[bot]
2024-11-17 22:22:44 +00:00
Author: https://github.com/trflynn89
Commit: b11fdea175
Pull-request: https://github.com/LadybirdBrowser/ladybird/pull/2370
1 changed files with 18 additions and 0 deletions
18
Libraries/LibCompress/Forward.h
Normal file
18
Libraries/LibCompress/Forward.h
Normal 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;
|
||||||
|
|
||||||
|
}
|
Loading…
Add table
Add a link
Reference in a new issue