Close the zip file
| 41 | |
| 42 | // Close the zip file |
| 43 | void zipper::close() |
| 44 | { |
| 45 | if (zipFile_) |
| 46 | { |
| 47 | closeEntry(); |
| 48 | zipClose(zipFile_, nullptr); |
| 49 | zipFile_ = nullptr; |
| 50 | } |
| 51 | } |
| 52 | |
| 53 | // Check if a zipfile is open. |
| 54 | // return: |
no test coverage detected