Blame src/lib/WP1MarginReleaseGroup.h

Packit 443c7d
/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: t; c-basic-offset: 4 -*- */
Packit 443c7d
/* libwpd
Packit 443c7d
 * Version: MPL 2.0 / LGPLv2.1+
Packit 443c7d
 *
Packit 443c7d
 * This Source Code Form is subject to the terms of the Mozilla Public
Packit 443c7d
 * License, v. 2.0. If a copy of the MPL was not distributed with this
Packit 443c7d
 * file, You can obtain one at http://mozilla.org/MPL/2.0/.
Packit 443c7d
 *
Packit 443c7d
 * Major Contributor(s):
Packit 443c7d
 * Copyright (C) 2006 Fridrich Strba (fridrich.strba@bluewin.ch)
Packit 443c7d
 *
Packit 443c7d
 * For minor contributions see the git repository.
Packit 443c7d
 *
Packit 443c7d
 * Alternatively, the contents of this file may be used under the terms
Packit 443c7d
 * of the GNU Lesser General Public License Version 2.1 or later
Packit 443c7d
 * (LGPLv2.1+), in which case the provisions of the LGPLv2.1+ are
Packit 443c7d
 * applicable instead of those above.
Packit 443c7d
 *
Packit 443c7d
 * For further information visit http://libwpd.sourceforge.net
Packit 443c7d
 */
Packit 443c7d
Packit 443c7d
/* "This product is not manufactured, approved, or supported by
Packit 443c7d
 * Corel Corporation or Corel Corporation Limited."
Packit 443c7d
 */
Packit 443c7d
Packit 443c7d
#ifndef WP1MARGINRELEASEGROUP_H
Packit 443c7d
#define WP1MARGINRELEASEGROUP_H
Packit 443c7d
Packit 443c7d
#include "WP1FixedLengthGroup.h"
Packit 443c7d
Packit 443c7d
class WP1MarginReleaseGroup : public WP1FixedLengthGroup
Packit 443c7d
{
Packit 443c7d
public:
Packit 443c7d
	WP1MarginReleaseGroup(librevenge::RVNGInputStream *input, WPXEncryption *encryption, unsigned char group);
Packit 443c7d
	~WP1MarginReleaseGroup() override;
Packit 443c7d
	void _readContents(librevenge::RVNGInputStream *input, WPXEncryption *encryption) override;
Packit 443c7d
	void parse(WP1Listener *listener) override;
Packit 443c7d
Packit 443c7d
private:
Packit 443c7d
	unsigned short m_release;
Packit 443c7d
};
Packit 443c7d
Packit 443c7d
#endif /* WP1MARGINRELEASEGROUP_H */
Packit 443c7d
/* vim:set shiftwidth=4 softtabstop=4 noexpandtab: */