aboutsummaryrefslogtreecommitdiff
path: root/lib/pdf/array.hh
diff options
context:
space:
mode:
Diffstat (limited to 'lib/pdf/array.hh')
-rw-r--r--lib/pdf/array.hh87
1 files changed, 87 insertions, 0 deletions
diff --git a/lib/pdf/array.hh b/lib/pdf/array.hh
new file mode 100644
index 0000000..7bb5ac5
--- /dev/null
+++ b/lib/pdf/array.hh
@@ -0,0 +1,87 @@
+// array.hh -- PDF array objects
+// 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_array_hh_included
+#define iscan_pdf_array_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 <vector>
+
+namespace iscan
+{
+
+namespace pdf
+{
+
+/*! Defines a PDF array object [p 58].
+ */
+class array : public object
+{
+private:
+ typedef std::vector<object *> store_type;
+ typedef store_type::iterator store_iter;
+ typedef store_type::const_iterator store_citer;
+
+ store_type _store;
+ store_type _mine;
+
+public:
+ virtual ~array ();
+
+ /*! Insert an object at the end the array
+ */
+ void insert (object* obj);
+
+ void insert (primitive obj);
+ void insert (object obj);
+
+ /*! Count the number of objects in the array
+ */
+ size_t size() const;
+
+ /*! Obtain a reference to an object at a given index
+ */
+ const object* operator[] (size_t index) const;
+
+ virtual void print (FILE* fp) const;
+};
+
+} // namespace pdf
+} // namespace iscan
+
+#endif // iscan_pdf_array_hh_included