X-Git-Url: https://www.fi.muni.cz/~kas/git//home/kas/public_html/git/?a=blobdiff_plain;ds=sidebyside;f=pdf%2Fxpdf%2FArray.h;h=20ae05f29707ba81e9a3f213609e17471947b755;hb=884f739665dc56e66f51e104350f2affd33f2dd8;hp=ecf2eea6fdeca7120c8223da3bc5bd0ae422c16c;hpb=d9f9a6449f377b4c933b75d57541b19c6d088994;p=evince.git diff --git a/pdf/xpdf/Array.h b/pdf/xpdf/Array.h index ecf2eea6..20ae05f2 100644 --- a/pdf/xpdf/Array.h +++ b/pdf/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