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-15 21:06:36 (GMT)
committer Michael Meeks <mmeeks@src.gnome.org>1999-08-15 21:06:36 (GMT)
commit2610a3462d1ac3f20cba8f16dd07cba8a8c2fbef (patch)
tree525fe32ba24e40e515aba0e4f7fb66b38941853d /pdf/xpdf/PDFDoc.h
parentc43ab012d25e32fe019d4654e1994ad3edd618dd (diff)
Break everything except bonobo-image-x-pdf :-)
New cleaner xpdf IO code. use make bonobo-image-x-pdf in xpdf to compile.
Diffstat (limited to 'pdf/xpdf/PDFDoc.h')
-rw-r--r--pdf/xpdf/PDFDoc.h5
1 files changed, 3 insertions, 2 deletions
diff --git a/pdf/xpdf/PDFDoc.h b/pdf/xpdf/PDFDoc.h
index 5e28962..c5a2470 100644
--- a/pdf/xpdf/PDFDoc.h
+++ b/pdf/xpdf/PDFDoc.h
@@ -15,6 +15,7 @@
#include <stdio.h>
#include "Link.h"
+#include "BaseFile.h"
class GString;
class XRef;
@@ -31,7 +32,7 @@ class LinkDest;
class PDFDoc {
public:
- PDFDoc(GString *fileName1);
+ PDFDoc(BaseFile file, GString *fileName1);
~PDFDoc();
// Was PDF document successfully opened?
@@ -96,7 +97,7 @@ private:
void getLinks(int page);
GString *fileName;
- FILE *file;
+ BaseFile file;
XRef *xref;
Catalog *catalog;
Links *links;