| 626 | } |
| 627 | |
| 628 | uint32_t ProjectFile::sizeOfFile(const std::string& name) const |
| 629 | { |
| 630 | zipios::ZipFile project(stdFile); |
| 631 | auto entry = project.getEntry(name); |
| 632 | return entry == nullptr ? 0 : entry->getSize(); |
| 633 | } |
| 634 | |
| 635 | std::list<std::string> ProjectFile::getInputFiles(const std::string& name) const |
| 636 | { |
no test coverage detected