Coverage Report

Created: 2026-03-12 06:42

next uncovered line (L), next uncovered region (R), next uncovered branch (B)
/src/libwpd/src/lib/WP5AttributeGroup.h
Line
Count
Source
1
/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: t; c-basic-offset: 4 -*- */
2
/* libwpd
3
 * Version: MPL 2.0 / LGPLv2.1+
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
 * Major Contributor(s):
10
 * Copyright (C) 2003 William Lachance (wrlach@gmail.com)
11
 * Copyright (C) 2003 Marc Maurer (uwog@uwog.net)
12
 *
13
 * For minor contributions see the git repository.
14
 *
15
 * Alternatively, the contents of this file may be used under the terms
16
 * of the GNU Lesser General Public License Version 2.1 or later
17
 * (LGPLv2.1+), in which case the provisions of the LGPLv2.1+ are
18
 * applicable instead of those above.
19
 *
20
 * For further information visit http://libwpd.sourceforge.net
21
 */
22
23
/* "This product is not manufactured, approved, or supported by
24
 * Corel Corporation or Corel Corporation Limited."
25
 */
26
27
#ifndef WP5ATTRIBUTEGROUP_H
28
#define WP5ATTRIBUTEGROUP_H
29
30
#include "WP5Listener.h"
31
#include "WP5FixedLengthGroup.h"
32
33
class WP5AttributeGroup : public WP5FixedLengthGroup
34
{
35
public:
36
  WP5AttributeGroup(librevenge::RVNGInputStream *input, WPXEncryption *encryption, unsigned char groupID);
37
  void parse(WP5Listener *listener) override = 0;
38
  unsigned char getAttribute() const
39
19.2k
  {
40
19.2k
    return m_attribute;
41
19.2k
  }
42
43
protected:
44
  void _readContents(librevenge::RVNGInputStream *input, WPXEncryption *encryption) override;
45
46
private:
47
  unsigned char m_attribute;
48
};
49
50
class WP5AttributeOnGroup : public WP5AttributeGroup
51
{
52
public:
53
  WP5AttributeOnGroup(librevenge::RVNGInputStream *input, WPXEncryption *encryption, unsigned char groupID);
54
  void parse(WP5Listener *listener) override;
55
};
56
57
class WP5AttributeOffGroup : public WP5AttributeGroup
58
{
59
public:
60
  WP5AttributeOffGroup(librevenge::RVNGInputStream *input, WPXEncryption *encryption, unsigned char groupID);
61
  void parse(WP5Listener *listener) override;
62
};
63
64
#endif /* WP5ATTRIBUTEGROUP_H */
65
/* vim:set shiftwidth=4 softtabstop=4 noexpandtab: */