WP6NumberingMethodGroup.h
Go to the documentation of this file.
00001 /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: t; c-basic-offset: 4 -*- */
00002 /* libwpd
00003  * Version: MPL 2.0 / LGPLv2.1+
00004  *
00005  * This Source Code Form is subject to the terms of the Mozilla Public
00006  * License, v. 2.0. If a copy of the MPL was not distributed with this
00007  * file, You can obtain one at http://mozilla.org/MPL/2.0/.
00008  *
00009  * Alternatively, the contents of this file may be used under the terms
00010  * of the GNU Lesser General Public License Version 2.1 or later
00011  * (LGPLv2.1+), in which case the provisions of the LGPLv2.1+ are
00012  * applicable instead of those above.
00013  *
00014  * For further information visit http://libwpd.sourceforge.net
00015  */
00016 
00017 /* "This product is not manufactured, approved, or supported by
00018  * Corel Corporation or Corel Corporation Limited."
00019  */
00020 
00021 #ifndef WP6NUMBERINGMETHODGROUP_H
00022 #define WP6NUMBERINGMETHODGROUP_H
00023 
00024 #include "WP6VariableLengthGroup.h"
00025 
00026 class WP6NumberingMethodGroup : public WP6VariableLengthGroup
00027 {
00028 public:
00029         WP6NumberingMethodGroup(librevenge::RVNGInputStream *input, WPXEncryption *encryption);
00030         ~WP6NumberingMethodGroup();
00031         void _readContents(librevenge::RVNGInputStream *input, WPXEncryption *encryption);
00032         void parse(WP6Listener *listener);
00033 private:
00034         unsigned char m_levelNumber;
00035         unsigned char m_numberingMethod;
00036 };
00037 
00038 #endif /* WP6NUMBERINGMETHODGROUP_H */
00039 /* vim:set shiftwidth=4 softtabstop=4 noexpandtab: */