Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/pdf/xpdf/PDFDoc.h
diff options
context:
space:
mode:
Diffstat (limited to 'pdf/xpdf/PDFDoc.h')
-rw-r--r--pdf/xpdf/PDFDoc.h5
1 files changed, 2 insertions, 3 deletions
diff --git a/pdf/xpdf/PDFDoc.h b/pdf/xpdf/PDFDoc.h
index c5a2470..f76cfaf 100644
--- a/pdf/xpdf/PDFDoc.h
+++ b/pdf/xpdf/PDFDoc.h
@@ -15,7 +15,6 @@
#include <stdio.h>
#include "Link.h"
-#include "BaseFile.h"
class GString;
class XRef;
@@ -32,7 +31,7 @@ class LinkDest;
class PDFDoc {
public:
- PDFDoc(BaseFile file, GString *fileName1);
+ PDFDoc(Stream *str1, GString *fileName1);
~PDFDoc();
// Was PDF document successfully opened?
@@ -97,7 +96,7 @@ private:
void getLinks(int page);
GString *fileName;
- BaseFile file;
+ Stream *str;
XRef *xref;
Catalog *catalog;
Links *links;