X-Git-Url: http://git.asbjorn.biz/?a=blobdiff_plain;f=pdf2swf%2Fxpdf%2FArray.h;h=a118f6852b01c9cb048fdbcc1dd06e32e2b94ec5;hb=5ede6209244433ea174111a9079fa6d0cf84d227;hp=ecf2eea6fdeca7120c8223da3bc5bd0ae422c16c;hpb=fc554a43712b76d16b41ec77dd311b4a78b1ef6b;p=swftools.git diff --git a/pdf2swf/xpdf/Array.h b/pdf2swf/xpdf/Array.h index ecf2eea..a118f68 100644 --- a/pdf2swf/xpdf/Array.h +++ b/pdf2swf/xpdf/Array.h @@ -2,7 +2,7 @@ // // Array.h // -// Copyright 1996 Derek B. Noonburg +// Copyright 1996-2002 Glyph & Cog, LLC // //======================================================================== @@ -15,6 +15,8 @@ #include "Object.h" +class XRef; + //------------------------------------------------------------------------ // Array //------------------------------------------------------------------------ @@ -23,7 +25,7 @@ class Array { public: // Constructor. - Array(); + Array(XRef *xrefA); // Destructor. ~Array(); @@ -44,6 +46,7 @@ public: private: + XRef *xref; // the xref table for this PDF file Object *elems; // array of elements int size; // size of array int length; // number of elements in array