WP5AttributeGroup.h
Go to the documentation of this file.
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 
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  {
40  return m_attribute;
41  }
42 
43 protected:
44  void _readContents(librevenge::RVNGInputStream *input, WPXEncryption *encryption) override;
45 
46 private:
47  unsigned char m_attribute;
48 };
49 
51 {
52 public:
53  WP5AttributeOnGroup(librevenge::RVNGInputStream *input, WPXEncryption *encryption, unsigned char groupID);
54  void parse(WP5Listener *listener) override;
55 };
56 
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: */
Definition: WP5AttributeGroup.h:50
Definition: WP5Listener.h:39
WP5AttributeOffGroup(librevenge::RVNGInputStream *input, WPXEncryption *encryption, unsigned char groupID)
Definition: WP5AttributeGroup.cpp:52
WP5AttributeGroup(librevenge::RVNGInputStream *input, WPXEncryption *encryption, unsigned char groupID)
Definition: WP5AttributeGroup.cpp:30
void parse(WP5Listener *listener) override=0
WP5AttributeOnGroup(librevenge::RVNGInputStream *input, WPXEncryption *encryption, unsigned char groupID)
Definition: WP5AttributeGroup.cpp:42
Definition: WP5FixedLengthGroup.h:33
Definition: WP5AttributeGroup.h:33
Definition: WP5AttributeGroup.h:57
unsigned char m_attribute
Definition: WP5AttributeGroup.h:47
void _readContents(librevenge::RVNGInputStream *input, WPXEncryption *encryption) override
Definition: WP5AttributeGroup.cpp:37
void parse(WP5Listener *listener) override
Definition: WP5AttributeGroup.cpp:57
Definition: WPXEncryption.h:35
unsigned char getAttribute() const
Definition: WP5AttributeGroup.h:38
void parse(WP5Listener *listener) override
Definition: WP5AttributeGroup.cpp:47

Generated for libwpd by doxygen 1.8.14