15 rindas
197 B
C++
15 rindas
197 B
C++
#ifndef PDFPREVIEW_H
|
|
#define PDFPREVIEW_H
|
|
#include <QImage>
|
|
|
|
class PdfPreview
|
|
{
|
|
public:
|
|
PdfPreview();
|
|
QImage previewImage;
|
|
QString documentPath;
|
|
unsigned int page;
|
|
};
|
|
|
|
#endif // PDFPREVIEW_H
|