MCPcopy Create free account
hub / github.com/Robotips/uConfig / loadPage

Method loadPage

src/pdf_extract/model/pdfdatasheet.cpp:44–54  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

42}
43
44bool PDFDatasheet::loadPage(int numPage)
45{
46 if (numPage >= _pageCount | numPage < 0)
47 return false;
48 if (page(numPage))
49 return true;
50
51 PDFPage *page = new PDFPage(this, numPage);
52 _pagesLoaded.insert(numPage, page);
53 return _pdfLoader->loadPage(page);
54}
55
56int PDFDatasheet::pageCount() const
57{

Callers 1

showPageMethod · 0.45

Calls

no outgoing calls

Tested by

no test coverage detected