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:
authorMichael Meeks <mmeeks@src.gnome.org>1999-08-19 17:57:59 (GMT)
committer Michael Meeks <mmeeks@src.gnome.org>1999-08-19 17:57:59 (GMT)
commitbf3b381529f5388bd1bda8ed8fafb247a7b8a9fc (patch)
tree23e95c805c1d878ba0bf90c68765aba383848139 /pdf/xpdf/PDFDoc.h
parent1a49446c08faaab930d3a36bc002b566eadb1ebc (diff)
Totaly re-hash stream architecture ... again :-)
Now we can compile but not run auxiliary utils.
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;