16 lines
228 B
C++
16 lines
228 B
C++
#include "BitReader.hpp"
|
|
#include <vector>
|
|
|
|
class Decompressor
|
|
{
|
|
public:
|
|
std::vector<uint8_t> decompress();
|
|
BitReader bitReader;
|
|
|
|
private:
|
|
int8_t twoZero();
|
|
int8_t treeZero();
|
|
int8_t forZero();
|
|
int8_t fiveZero();
|
|
};
|