| 838 | } |
| 839 | |
| 840 | std::string ZipFile::getFirstFilename() |
| 841 | { |
| 842 | if (unzGoToFirstFile(_data->zipFile) != UNZ_OK) |
| 843 | return emptyFilename; |
| 844 | std::string path; |
| 845 | unz_file_info_s info; |
| 846 | getCurrentFileInfo(&path, &info); |
| 847 | return path; |
| 848 | } |
| 849 | |
| 850 | std::string ZipFile::getNextFilename() |
| 851 | { |
no test coverage detected