| 619 | } |
| 620 | |
| 621 | bool ProjectFile::containsFile(const std::string& name) const |
| 622 | { |
| 623 | zipios::ZipFile project(stdFile); |
| 624 | auto entry = project.getEntry(name); |
| 625 | return entry != nullptr; |
| 626 | } |
| 627 | |
| 628 | uint32_t ProjectFile::sizeOfFile(const std::string& name) const |
| 629 | { |
no test coverage detected