| 188 | //----------------------------------------------------------------------------- |
| 189 | |
| 190 | bool ZipObject::addFile(const char *filename, const char *pathInZip, bool replace /* = true */) |
| 191 | { |
| 192 | return mZipArchive->addFile(filename, pathInZip, replace); |
| 193 | } |
| 194 | |
| 195 | bool ZipObject::extractFile(const char *pathInZip, const char *filename) |
| 196 | { |