mirror of https://github.com/PrimeDecomp/prime.git
28 lines
515 B
C++
28 lines
515 B
C++
|
#ifndef _CZIPOUTPUTSTREAM
|
||
|
#define _CZIPOUTPUTSTREAM
|
||
|
|
||
|
|
||
|
#include "Kyoto/Streams/COutputStream.hpp"
|
||
|
|
||
|
#include "rstl/auto_ptr.hpp"
|
||
|
|
||
|
#include "zlib/zlib.h"
|
||
|
|
||
|
class CZipOutputStream : public COutputStream {
|
||
|
public:
|
||
|
CZipOutputStream(COutputStream* out, int level);
|
||
|
~CZipOutputStream();
|
||
|
|
||
|
void Finish();
|
||
|
bool Process(bool v);
|
||
|
void Write(const void* ptr, size_t len);
|
||
|
private:
|
||
|
COutputStream* mOutput;
|
||
|
int mCompressedBytesWritten;
|
||
|
rstl::auto_ptr<z_stream> mZStream;
|
||
|
int mUnk;
|
||
|
};
|
||
|
|
||
|
|
||
|
#endif // _CZIPOUTPUTSTREAM
|