mirror of
https://github.com/elasota/Aerofoil.git
synced 2025-09-23 23:00:42 +00:00
16 lines
315 B
C++
16 lines
315 B
C++
#pragma once
|
|
|
|
#include "IDecompressor.h"
|
|
|
|
class NullDecompressor : public IDecompressor
|
|
{
|
|
public:
|
|
NullDecompressor();
|
|
|
|
bool Reset(CSInputBuffer *input, size_t compressedSize, size_t decompressedSize) override;
|
|
bool ReadBytes(void *dest, size_t numBytes) override;
|
|
|
|
private:
|
|
CSInputBuffer *m_input;
|
|
};
|