summaryrefslogtreecommitdiffstats
path: root/src/pdf/qpdfdocument_p.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/pdf/qpdfdocument_p.h')
-rw-r--r--src/pdf/qpdfdocument_p.h20
1 files changed, 20 insertions, 0 deletions
diff --git a/src/pdf/qpdfdocument_p.h b/src/pdf/qpdfdocument_p.h
new file mode 100644
index 0000000..5a30b1f
--- /dev/null
+++ b/src/pdf/qpdfdocument_p.h
@@ -0,0 +1,20 @@
+#ifndef QPDFDOCUMENT_P_H
+#define QPDFDOCUMENT_P_H
+
+#include "fpdfview.h"
+
+#include <qiodevice.h>
+
+class QPdfDocumentPrivate
+{
+public:
+ QPdfDocumentPrivate();
+ ~QPdfDocumentPrivate();
+
+ FPDF_DOCUMENT doc;
+ QScopedPointer<QIODevice> device;
+ QByteArray password;
+};
+
+#endif // QPDFDOCUMENT_P_H
+