mirror of
https://github.com/4jcraft/4jcraft.git
synced 2026-04-24 11:23:36 +00:00
20 lines
604 B
C++
20 lines
604 B
C++
#pragma once
|
|
// 4J Stu - We are not using GZIP compression, so this is just a pass through
|
|
// class
|
|
|
|
#include "OutputStream.h"
|
|
|
|
class GZIPOutputStream : public OutputStream {
|
|
private:
|
|
OutputStream* stream;
|
|
|
|
public:
|
|
GZIPOutputStream(OutputStream* out) : stream(out) {};
|
|
virtual void write(unsigned int b) { stream->write(b); };
|
|
virtual void write(byteArray b) { stream->write(b); };
|
|
virtual void write(byteArray b, unsigned int offset, unsigned int length) {
|
|
stream->write(b, offset, length);
|
|
};
|
|
virtual void close() { stream->close(); };
|
|
virtual void flush() {}
|
|
}; |