| 171 | PDFPageCache Document::_pageCache; |
| 172 | |
| 173 | Document::Document(QString fileName): |
| 174 | _fileName(fileName) |
| 175 | { |
| 176 | Q_ASSERT(_docLock != nullptr); |
| 177 | |
| 178 | #ifdef DEBUG |
| 179 | // qDebug() << "Document::Document(" << fileName << ")"; |
| 180 | #endif |
| 181 | } |
| 182 | |
| 183 | // FIXME: Consider porting Document to a PIMPL design in which we could just |
| 184 | // call the constructor to construct a document |
nothing calls this directly
no outgoing calls
no test coverage detected