~ubuntu-branches/debian/experimental/cups-filters/experimental

« back to all changes in this revision

Viewing changes to pdftopdf/P2PXRef.h

Tags: upstream-1.0.20
ImportĀ upstreamĀ versionĀ 1.0.20

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
/*
2
 
 
3
 
Copyright (c) 2006-2007, BBR Inc.  All rights reserved.
4
 
 
5
 
Permission is hereby granted, free of charge, to any person obtaining
6
 
a copy of this software and associated documentation files (the
7
 
"Software"), to deal in the Software without restriction, including
8
 
without limitation the rights to use, copy, modify, merge, publish,
9
 
distribute, sublicense, and/or sell copies of the Software, and to
10
 
permit persons to whom the Software is furnished to do so, subject to
11
 
the following conditions:
12
 
 
13
 
The above copyright notice and this permission notice shall be included
14
 
in all copies or substantial portions of the Software.
15
 
 
16
 
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
17
 
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
18
 
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
19
 
IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
20
 
CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
21
 
TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
22
 
SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
23
 
 
24
 
*/
25
 
/*
26
 
 P2PXRef.h
27
 
 pdftopdf cross reference
28
 
*/
29
 
#ifndef _P2PXREF_H_
30
 
#define _P2PXREF_H_
31
 
 
32
 
#include "P2POutputStream.h"
33
 
#include "XRef.h"
34
 
 
35
 
class P2PObject;
36
 
 
37
 
class P2PXRef {
38
 
public:
39
 
  /* get object from objects table */
40
 
  static P2PObject *get(int num, int gen) {
41
 
    if (num >= objectsSize) return 0;
42
 
    return objects[num];
43
 
  }
44
 
 
45
 
  /* return number of objects */
46
 
  static int getNObjects() { return currentNum+1; }
47
 
  /* put object to table */
48
 
  static void put(P2PObject *obj);
49
 
  static void put(P2PObject *obj, P2POutputStream *str);
50
 
  /* remove object */
51
 
  static void remove(P2PObject *obj);
52
 
 
53
 
  static int output(P2POutputStream *str);
54
 
 
55
 
  /* output objects that are not output yet. */
56
 
  static void flush(P2POutputStream *str, XRef *xref);
57
 
 
58
 
  /* clean objects */
59
 
  static void clean();
60
 
 
61
 
 
62
 
private:
63
 
  /* objects table */
64
 
  static P2PObject **objects;
65
 
  /* objects table size */
66
 
  static int objectsSize;
67
 
  /* current object number */
68
 
  static int currentNum;
69
 
};
70
 
 
71
 
#endif