blob: d20e0d28c1b5275c9b65208660effe8f333e6e19 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
|
// dictionary.hh -- PDF dictionaries
// Copyright (C) 2008 SEIKO EPSON CORPORATION
//
// This file is part of the 'iscan' program.
//
// The 'iscan' program is free-ish software.
// You can redistribute it and/or modify it under the terms of the GNU
// General Public License as published by the Free Software Foundation;
// either version 2 of the License or at your option any later version.
//
// This program is distributed in the hope that it will be useful, but
// WITHOUT ANY WARRANTY; without even the implied warranty of FITNESS
// FOR A PARTICULAR PURPOSE or MERCHANTABILITY.
// See the GNU General Public License for more details.
//
// You should have received a verbatim copy of the GNU General Public
// License along with this program; if not, write to:
//
// Free Software Foundation, Inc.
// 59 Temple Place, Suite 330
// Boston, MA 02111-1307 USA
//
// As a special exception, the copyright holders give permission
// to link the code of this program with the esmod library and
// distribute linked combinations including the two. You must obey
// the GNU General Public License in all respects for all of the
// code used other than esmod.
#ifndef iscan_pdf_dictionary_hh_included
#define iscan_pdf_dictionary_hh_included
#ifndef __cplusplus
#error "This is a C++ header file; use a C++ compiler to compile it."
#endif
#ifdef HAVE_CONFIG_H
#include <config.h>
#endif
#include "object.hh"
#include "primitive.hh"
#include <map>
namespace iscan
{
namespace pdf
{
/*! Defines a pdf dictionary object [p 59]
*/
class dictionary : public object
{
private:
typedef std::map<const char *, object *> store_type;
typedef store_type::iterator store_iter;
typedef store_type::const_iterator store_citer;
store_type _store;
store_type _mine;
public:
virtual ~dictionary ();
/*! Insert a key/value pair into the dictionary
*
* If the key already exists, its value is replaced with the new one.
*
* The key is written to the PDF file as a name object as defined in the
* PDF spec [p. 59]
*/
void insert (const char *key, object *value);
void insert (const char *key, primitive value);
void insert (const char *key, object value);
/*! Count the number of objects in the dictionary
*/
size_t size () const;
/*! Obtain a reference to an object with a given key
*/
const object * operator[] (const char *key) const;
virtual void print (FILE* fp) const;
};
} // namespace pdf
} // namespace iscan
#endif // iscan_pdf_dictionary_hh_included
|