summaryrefslogtreecommitdiff
path: root/shell/inc/basereader.hxx
diff options
context:
space:
mode:
authorTor Lillqvist <tml@collabora.com>2016-04-07 12:43:39 +0300
committerTor Lillqvist <tml@collabora.com>2016-04-07 13:19:14 +0300
commitc076babe3ce636d60a699f66e4912c4d043b0412 (patch)
tree184c7e92cfd63b399c7ad8daa30984419a8503f3 /shell/inc/basereader.hxx
parent94a95dce43e07b40350ed849db148b2946e3fd5e (diff)
Drop pointless "internal" directory level for already internal include files
Change-Id: I1ece44616704483cd4d9d2b6204329414f82a98c
Diffstat (limited to 'shell/inc/basereader.hxx')
-rw-r--r--shell/inc/basereader.hxx72
1 files changed, 72 insertions, 0 deletions
diff --git a/shell/inc/basereader.hxx b/shell/inc/basereader.hxx
new file mode 100644
index 000000000000..577684c0f3f9
--- /dev/null
+++ b/shell/inc/basereader.hxx
@@ -0,0 +1,72 @@
+/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
+/*
+ * This file is part of the LibreOffice project.
+ *
+ * This Source Code Form is subject to the terms of the Mozilla Public
+ * License, v. 2.0. If a copy of the MPL was not distributed with this
+ * file, You can obtain one at http://mozilla.org/MPL/2.0/.
+ *
+ * This file incorporates work covered by the following license notice:
+ *
+ * Licensed to the Apache Software Foundation (ASF) under one or more
+ * contributor license agreements. See the NOTICE file distributed
+ * with this work for additional information regarding copyright
+ * ownership. The ASF licenses this file to you under the Apache
+ * License, Version 2.0 (the "License"); you may not use this file
+ * except in compliance with the License. You may obtain a copy of
+ * the License at http://www.apache.org/licenses/LICENSE-2.0 .
+ */
+
+#ifndef INCLUDED_SHELL_INC_INTERNAL_BASEREADER_HXX
+#define INCLUDED_SHELL_INC_INTERNAL_BASEREADER_HXX
+
+#include "global.hxx"
+#include "types.hxx"
+#include "config.hxx"
+#include "utilities.hxx"
+#include "i_xml_parser_event_handler.hxx"
+
+#include "xml_parser.hxx"
+#include "zipfile.hxx"
+
+class CBaseReader : public i_xml_parser_event_handler
+{
+public:
+ virtual ~CBaseReader();
+
+protected: // protected because its only an implementation relevant class
+ CBaseReader( const std::string& DocumentName );
+
+ CBaseReader( StreamInterface *stream );
+
+ virtual void start_document();
+
+ virtual void end_document();
+
+ virtual void start_element(
+ const std::wstring& raw_name,
+ const std::wstring& local_name,
+ const XmlTagAttributes_t& attributes) = 0;
+
+ virtual void end_element(
+ const std::wstring& raw_name, const std::wstring& local_name) = 0;
+
+ virtual void characters(const std::wstring& character) = 0;
+
+ virtual void ignore_whitespace(const std::wstring& /*whitespaces*/){};
+
+ virtual void processing_instruction(
+ const std::wstring& /*target*/, const std::wstring& /*data*/){};
+
+ virtual void comment(const std::wstring& /*comment*/){};
+
+ void Initialize( const std::string& /*ContentName*/);
+
+private:
+ ZipFile m_ZipFile;
+ ZipFile::ZipContentBuffer_t m_ZipContent;
+};
+
+#endif
+
+/* vim:set shiftwidth=4 softtabstop=4 expandtab: */