QXPBlockParser.h
Go to the documentation of this file.
1/* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
2/*
3 * This file is part of the libqxp project.
4 *
5 * This Source Code Form is subject to the terms of the Mozilla Public
6 * License, v. 2.0. If a copy of the MPL was not distributed with this
7 * file, You can obtain one at http://mozilla.org/MPL/2.0/.
8 */
9
10#ifndef QXPBLOCKPARSER_H_INCLUDED
11#define QXPBLOCKPARSER_H_INCLUDED
12
13#include "libqxp_utils.h"
14
15namespace libqxp
16{
17
18class QXPHeader;
19
21{
22 // disable copying
23 QXPBlockParser(const QXPBlockParser &other) = delete;
24 QXPBlockParser &operator=(const QXPBlockParser &other) = delete;
25
26public:
27 QXPBlockParser(const std::shared_ptr<librevenge::RVNGInputStream> &input, const std::shared_ptr<QXPHeader> &header);
28
29 std::shared_ptr<librevenge::RVNGInputStream> getBlock(const uint32_t index);
30 std::shared_ptr<librevenge::RVNGInputStream> getChain(const uint32_t index);
31
32private:
33 const std::shared_ptr<librevenge::RVNGInputStream> m_input;
34 const std::shared_ptr<QXPHeader> m_header;
35 const bool be; // big endian
36
37 const unsigned long m_length;
38 const uint32_t m_blockLength;
39 const uint32_t m_lastBlock;
40};
41
42}
43
44#endif // QXPBLOCKPARSER_H_INCLUDED
45
46/* vim:set shiftwidth=2 softtabstop=2 expandtab: */
const std::shared_ptr< QXPHeader > m_header
Definition QXPBlockParser.h:34
QXPBlockParser(const QXPBlockParser &other)=delete
const std::shared_ptr< librevenge::RVNGInputStream > m_input
Definition QXPBlockParser.h:33
QXPBlockParser & operator=(const QXPBlockParser &other)=delete
std::shared_ptr< librevenge::RVNGInputStream > getBlock(const uint32_t index)
Definition QXPBlockParser.cpp:56
const unsigned long m_length
Definition QXPBlockParser.h:37
const uint32_t m_blockLength
Definition QXPBlockParser.h:38
QXPBlockParser(const std::shared_ptr< librevenge::RVNGInputStream > &input, const std::shared_ptr< QXPHeader > &header)
const uint32_t m_lastBlock
Definition QXPBlockParser.h:39
std::shared_ptr< librevenge::RVNGInputStream > getChain(const uint32_t index)
Definition QXPBlockParser.cpp:69
const bool be
Definition QXPBlockParser.h:35
Definition QXPHeader.h:41
Definition libqxp_utils.cpp:25

Generated for libqxp by doxygen 1.13.2