X-Git-Url: http://git.asbjorn.biz/?a=blobdiff_plain;f=pdf2swf%2Fxpdf%2FArray.h;h=20ae05f29707ba81e9a3f213609e17471947b755;hb=c7432833fe3a6469d63fad135151a92e12877b94;hp=ecf2eea6fdeca7120c8223da3bc5bd0ae422c16c;hpb=fc554a43712b76d16b41ec77dd311b4a78b1ef6b;p=swftools.git diff --git a/pdf2swf/xpdf/Array.h b/pdf2swf/xpdf/Array.h index ecf2eea..20ae05f 100644 --- a/pdf2swf/xpdf/Array.h +++ b/pdf2swf/xpdf/Array.h @@ -2,19 +2,23 @@ // // Array.h // -// Copyright 1996 Derek B. Noonburg +// Copyright 1996-2003 Glyph & Cog, LLC // //======================================================================== #ifndef ARRAY_H #define ARRAY_H -#ifdef __GNUC__ +#include + +#ifdef USE_GCC_PRAGMAS #pragma interface #endif #include "Object.h" +class XRef; + //------------------------------------------------------------------------ // Array //------------------------------------------------------------------------ @@ -23,7 +27,7 @@ class Array { public: // Constructor. - Array(); + Array(XRef *xrefA); // Destructor. ~Array(); @@ -44,6 +48,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