| 144 | ZipFile::ZipFile() : zf(NULL) {} |
| 145 | |
| 146 | ZipFile::~ZipFile() { |
| 147 | if (zf && zipClose(zf, NULL) != ZIP_OK) { |
| 148 | DisplayError("Error", "Error closing zip file"); |
| 149 | } |
| 150 | } |
| 151 | |
| 152 | void Zip(const std::string& src_file_path, |
| 153 | const std::string& zip_file_path, |
nothing calls this directly
no test coverage detected