14 righe
184 B
C
14 righe
184 B
C
|
#ifndef PDFPREVIEW_H
|
||
|
#define PDFPREVIEW_H
|
||
|
#include <QImage>
|
||
|
|
||
|
class PdfPreview
|
||
|
{
|
||
|
public:
|
||
|
PdfPreview();
|
||
|
QImage previewImage;
|
||
|
QString documentPath;
|
||
|
};
|
||
|
|
||
|
#endif // PDFPREVIEW_H
|