| 27 | #include "utils.h" |
| 28 | |
| 29 | ZipFile::ZipFile(const char *filename, const char *mode) |
| 30 | : file(filename, mode, FFMS_ERROR_PARSER, FFMS_ERROR_FILE_READ) |
| 31 | , is_file(true) |
| 32 | , state(Initial) { |
| 33 | buffer.resize(65536); |
| 34 | z = {}; |
| 35 | } |
| 36 | |
| 37 | ZipFile::ZipFile() |
| 38 | : is_file(false) |
nothing calls this directly
no outgoing calls
no test coverage detected