| 442 | } |
| 443 | |
| 444 | BookMetadataCache::SpineEntry BookMetadataCache::readSpineEntry(HalFile& file) const { |
| 445 | SpineEntry entry; |
| 446 | serialization::readString(file, entry.href); |
| 447 | serialization::readPod(file, entry.cumulativeSize); |
| 448 | serialization::readPod(file, entry.tocIndex); |
| 449 | return entry; |
| 450 | } |
| 451 | |
| 452 | BookMetadataCache::TocEntry BookMetadataCache::readTocEntry(HalFile& file) const { |
| 453 | TocEntry entry; |
nothing calls this directly
no test coverage detected