comparison Core/Compression/HierarchicalZipWriter.h @ 1277:46bca019587e

primitives to add new content to existing ZIP files
author Sebastien Jodogne <s.jodogne@gmail.com>
date Mon, 26 Jan 2015 15:22:14 +0100
parents 82567bac5e25
children 6e7e5ed91c2d
comparison
equal deleted inserted replaced
1276:6164f7200c43 1277:46bca019587e
112 uint8_t GetCompressionLevel() const 112 uint8_t GetCompressionLevel() const
113 { 113 {
114 return writer_.GetCompressionLevel(); 114 return writer_.GetCompressionLevel();
115 } 115 }
116 116
117 void SetAppendToExisting(bool append)
118 {
119 writer_.SetAppendToExisting(append);
120 }
121
122 bool IsAppendToExisting() const
123 {
124 return writer_.IsAppendToExisting();
125 }
126
117 void OpenFile(const char* name); 127 void OpenFile(const char* name);
118 128
119 void OpenDirectory(const char* name); 129 void OpenDirectory(const char* name);
120 130
121 void CloseDirectory(); 131 void CloseDirectory();