Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/pdf/xpdf/Object.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/Object.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/Object.h')
-rw-r--r--pdf/xpdf/Object.h5
1 files changed, 3 insertions, 2 deletions
diff --git a/pdf/xpdf/Object.h b/pdf/xpdf/Object.h
index 395096f..305d28a 100644
--- a/pdf/xpdf/Object.h
+++ b/pdf/xpdf/Object.h
@@ -18,6 +18,7 @@
#include "gtypes.h"
#include "gmem.h"
#include "GString.h"
+#include "BaseFile.h"
class Array;
class Dict;
@@ -177,7 +178,7 @@ public:
char *streamGetLine(char *buf, int size);
int streamGetPos();
void streamSetPos(int pos);
- FILE *streamGetFile();
+ BaseFile streamGetFile();
Dict *streamGetDict();
// Output.
@@ -290,7 +291,7 @@ inline int Object::streamGetPos()
inline void Object::streamSetPos(int pos)
{ stream->setPos(pos); }
-inline FILE *Object::streamGetFile()
+inline BaseFile Object::streamGetFile()
{ return stream->getFile(); }
inline Dict *Object::streamGetDict()