X-Git-Url: http://git.asbjorn.biz/?p=swftools.git;a=blobdiff_plain;f=pdf2swf%2Fxpdf%2FLexer.h;fp=pdf2swf%2Fxpdf%2FLexer.h;h=8a01ab25e9ae96e80863e6e15d24d15e5e530543;hp=70144b86bc3216db4caacf0d4ce8e7aa19bd16e0;hb=50dd339d3d6262763616efe8d7ee415ab19befb9;hpb=33b4efceb35f7582426665aba920fd950edc0602 diff --git a/pdf2swf/xpdf/Lexer.h b/pdf2swf/xpdf/Lexer.h index 70144b8..8a01ab2 100644 --- a/pdf2swf/xpdf/Lexer.h +++ b/pdf2swf/xpdf/Lexer.h @@ -2,7 +2,7 @@ // // Lexer.h // -// Copyright 1996 Derek B. Noonburg +// Copyright 1996-2002 Glyph & Cog, LLC // //======================================================================== @@ -16,6 +16,8 @@ #include "Object.h" #include "Stream.h" +class XRef; + #define tokBufSize 128 // size of token buffer //------------------------------------------------------------------------ @@ -27,11 +29,11 @@ public: // Construct a lexer for a single stream. Deletes the stream when // lexer is deleted. - Lexer(Stream *str); + Lexer(XRef *xref, Stream *str); // Construct a lexer for a stream or array of streams (assumes obj // is either a stream or array of streams). - Lexer(Object *obj); + Lexer(XRef *xref, Object *obj); // Destructor. ~Lexer(); @@ -49,13 +51,14 @@ public: Stream *getStream() { return curStr.isNone() ? (Stream *)NULL : curStr.getStream(); } - // Get current position in file. + // Get current position in file. This is only used for error + // messages, so it returns an int instead of a Guint. int getPos() - { return curStr.isNone() ? -1 : curStr.streamGetPos(); } + { return curStr.isNone() ? -1 : (int)curStr.streamGetPos(); } // Set position in file. - void setPos(int pos) - { if (!curStr.isNone()) curStr.streamSetPos(pos); } + void setPos(Guint pos, int dir = 0) + { if (!curStr.isNone()) curStr.streamSetPos(pos, dir); } private: