aboutsummaryrefslogtreecommitdiff
path: root/tests/poppler/cpp/poppler-document-private.h
diff options
context:
space:
mode:
authorAlon Zakai <alonzakai@gmail.com>2011-03-16 17:19:57 -0700
committerAlon Zakai <alonzakai@gmail.com>2011-03-16 17:19:57 -0700
commitcad92b918bed03be4b822c7579b0f5d1affb9401 (patch)
tree73117aee864581675bcb120caff847dc8f89fa0d /tests/poppler/cpp/poppler-document-private.h
parentae5aa844848c071d3ee98130b7f658b423db054c (diff)
poppler test
Diffstat (limited to 'tests/poppler/cpp/poppler-document-private.h')
-rw-r--r--tests/poppler/cpp/poppler-document-private.h65
1 files changed, 65 insertions, 0 deletions
diff --git a/tests/poppler/cpp/poppler-document-private.h b/tests/poppler/cpp/poppler-document-private.h
new file mode 100644
index 00000000..f78e57c8
--- /dev/null
+++ b/tests/poppler/cpp/poppler-document-private.h
@@ -0,0 +1,65 @@
+/*
+ * Copyright (C) 2009-2010, Pino Toscano <pino@kde.org>
+ *
+ * This program is free 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, 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
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with this program; if not, write to the Free Software
+ * Foundation, Inc., 51 Franklin Street - Fifth Floor, Boston, MA 02110-1301, USA.
+ */
+
+#ifndef POPPLER_DOCUMENT_PRIVATE_H
+#define POPPLER_DOCUMENT_PRIVATE_H
+
+#include "poppler-global.h"
+
+#include "poppler-config.h"
+#include "GooString.h"
+#include "PDFDoc.h"
+
+#include <vector>
+
+namespace poppler
+{
+
+class document;
+class embedded_file;
+
+class document_private
+{
+public:
+ document_private(GooString *file_path, const std::string &owner_password,
+ const std::string &user_password);
+ document_private(byte_array *file_data, const std::string &owner_password,
+ const std::string &user_password);
+ document_private(const char *file_data, int file_data_length,
+ const std::string &owner_password,
+ const std::string &user_password);
+ ~document_private();
+
+ static document* check_document(document_private *doc, byte_array *file_data);
+
+ PDFDoc *doc;
+ byte_array doc_data;
+ const char *raw_doc_data;
+ int raw_doc_data_length;
+ bool is_locked;
+ std::vector<embedded_file *> embedded_files;
+
+private:
+ void init();
+
+ static unsigned int count;
+};
+
+}
+
+#endif