| 322 | } |
| 323 | |
| 324 | std::vector<Bookmark> PDF::GetBookmarks() { |
| 325 | if (p->mPages.empty()) { |
| 326 | return {}; |
| 327 | } |
| 328 | return ExtractBookmarks(*p->mOutlineDocumentHelper, p->mPageIndices); |
| 329 | } |
| 330 | |
| 331 | std::vector<std::vector<Link>> PDF::GetLinks() { |
| 332 | if (p->mPages.empty()) { |
nothing calls this directly
no test coverage detected