Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/pdf/xpdf/Array.h
diff options
context:
space:
mode:
authorMartin Kretzschmar <mkretzschmar@src.gnome.org>2002-09-18 22:20:42 (GMT)
committer Martin Kretzschmar <mkretzschmar@src.gnome.org>2002-09-18 22:20:42 (GMT)
commit2a393c134fe3fe8eb85bf818cb7ad6ae4396322a (patch)
treeeba8b0dcaba42d799ed8313faee15fb74a5a0cd2 /pdf/xpdf/Array.h
parent7aac8dc8533347e21311b15186e0af82f1b22fd6 (diff)
Synched with Xpdf 1.01
Diffstat (limited to 'pdf/xpdf/Array.h')
-rw-r--r--pdf/xpdf/Array.h7
1 files changed, 5 insertions, 2 deletions
diff --git a/pdf/xpdf/Array.h b/pdf/xpdf/Array.h
index ecf2eea..a118f68 100644
--- a/pdf/xpdf/Array.h
+++ b/pdf/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 <elems> array
int length; // number of elements in array