# | Line 8 | Line 8 | |
---|---|---|
8 | ||
9 | #include "GzipWriter.hpp" | |
10 | ||
11 | + | namespace Zlib |
12 | + | { |
13 | + | |
14 | GzipWriter::GzipWriter(const cse::String &path) : file(CheckError(::gzopen(path.NullTerminate(), "wb"))) | |
15 | { | |
16 | } | |
# | Line 31 | Line 34 | void GzipWriter::Flush() | |
34 | { | |
35 | CheckError(::gzflush(file, Z_SYNC_FLUSH), file); | |
36 | } | |
37 | + | |
38 | + | } |
– | Removed lines |
+ | Added lines |
< | Changed lines |
> | Changed lines |