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 WP6SETNUMBERGROUP_H 00022 #define WP6SETNUMBERGROUP_H 00023 00024 #include "WP6VariableLengthGroup.h" 00025 00026 class WP6SetNumberGroup : public WP6VariableLengthGroup 00027 { 00028 public: 00029 WP6SetNumberGroup(WPXInputStream *input, WPXEncryption *encryption); 00030 ~WP6SetNumberGroup(); 00031 void _readContents(WPXInputStream *input, WPXEncryption *encryption); 00032 void parse(WP6Listener *listener); 00033 private: 00034 uint8_t m_countOfLevelNumbersSetting; 00035 uint8_t m_startingLevelNumber; 00036 uint16_t m_countNumbers; 00037 }; 00038 00039 #endif /* WP6SETNUMBERGROUP_H */ 00040 /* vim:set shiftwidth=4 softtabstop=4 noexpandtab: */