mirror of
https://github.com/libAthena/athena.git
synced 2025-06-02 20:51:44 +00:00
Removes unused headers and ensures that all necessary headers are included. In particular, this removes quite a few <iostream> includes, which removes quite a few static constructors.
12 lines
405 B
C++
12 lines
405 B
C++
#pragma once
|
|
|
|
#include "LZ77/LZBase.hpp"
|
|
|
|
class LZType11 : public LZBase {
|
|
public:
|
|
explicit LZType11(atInt32 MinimumOffset = 1, atInt32 SlidingWindow = 4096, atInt32 MinimumMatch = 3,
|
|
atInt32 BlockSize = 8);
|
|
atUint32 compress(const atUint8* src, atUint8** dst, atUint32 srcLength) override;
|
|
atUint32 decompress(const atUint8* src, atUint8** dst, atUint32 srcLength) override;
|
|
};
|