~ubuntu-branches/ubuntu/hoary/libextractor/hoary

« back to all changes in this revision

Viewing changes to src/plugins/pdf/Array.h

  • Committer: Bazaar Package Importer
  • Author(s): Daniel Baumann
  • Date: 2004-10-30 23:50:00 UTC
  • mfrom: (1.1.1 upstream)
  • Revision ID: james.westby@ubuntu.com-20041030235000-poix4e5mzhmzkpbk
Tags: 0.3.10-2
* Added fix from cvs for various Sparc64 problems (Closes #278905).
* Added workaround from cvs for re-load glib problem of OLE2 extractor.
* debian/watch added.

Show diffs side-by-side

added added

removed removed

Lines of Context:
2
2
//
3
3
// Array.h
4
4
//
5
 
// Copyright 1996 Derek B. Noonburg
 
5
// Copyright 1996-2003 Glyph & Cog, LLC
6
6
//
7
7
//========================================================================
8
8
 
9
9
#ifndef ARRAY_H
10
10
#define ARRAY_H
11
11
 
12
 
#ifdef __GNUC__
 
12
#include <aconf.h>
 
13
 
 
14
#ifdef USE_GCC_PRAGMAS
13
15
#pragma interface
14
16
#endif
15
17
 
16
18
#include "Object.h"
17
19
 
 
20
class XRef;
 
21
 
18
22
//------------------------------------------------------------------------
19
23
// Array
20
24
//------------------------------------------------------------------------
23
27
public:
24
28
 
25
29
  // Constructor.
26
 
  Array();
 
30
  Array(XRef *xrefA);
27
31
 
28
32
  // Destructor.
29
33
  ~Array();
44
48
 
45
49
private:
46
50
 
 
51
  XRef *xref;                   // the xref table for this PDF file
47
52
  Object *elems;                // array of elements
48
53
  int size;                     // size of <elems> array
49
54
  int length;                   // number of elements in array