| 51 | } |
| 52 | |
| 53 | std::istream* ZipHeader::getInputStream(const ConstEntryPointer& entry) |
| 54 | { |
| 55 | if (!_valid) { |
| 56 | throw zipios::InvalidStateException("Attempt to use an invalid FileCollection"); |
| 57 | } |
| 58 | return getInputStream(entry->getName()); |
| 59 | } |
| 60 | |
| 61 | std::istream* ZipHeader::getInputStream(const std::string& entry_name, MatchPath matchpath) |
| 62 | { |
no test coverage detected