Document Class ==============
| 370 | // Document Class |
| 371 | // ============== |
| 372 | Document::Document(QString fileName): |
| 373 | Super(fileName), |
| 374 | _mupdf_data(NULL), |
| 375 | _glyph_cache(fz_new_glyph_cache()) |
| 376 | { |
| 377 | #ifdef DEBUG |
| 378 | // qDebug() << "MuPDF::Document::Document(" << fileName << ")"; |
| 379 | #endif |
| 380 | reload(); |
| 381 | } |
| 382 | |
| 383 | Document::~Document() |
| 384 | { |
nothing calls this directly
no outgoing calls
no test coverage detected