WP6NumberingMethodGroup.h

Go to the documentation of this file.
00001 /* libwpd
00002  *  
00003  * This library is free software; you can redistribute it and/or
00004  * modify it under the terms of the GNU Lesser General Public
00005  * License as published by the Free Software Foundation; either
00006  * version 2 of the License, or (at your option) any later version.
00007  *
00008  * This library is distributed in the hope that it will be useful,
00009  * but WITHOUT ANY WARRANTY; without even the implied warranty of
00010  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
00011  * Library General Public License for more details.
00012  *
00013  * You should have received a copy of the GNU Library General Public
00014  * License along with this library; if not, write to the Free Software
00015  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA
00016  *
00017  * For further information visit http://libwpd.sourceforge.net
00018  */
00019 
00020 /* "This product is not manufactured, approved, or supported by 
00021  * Corel Corporation or Corel Corporation Limited."
00022  */
00023 
00024 #ifndef WP6NUMBERINGMETHODGROUP_H
00025 #define WP6NUMBERINGMETHODGROUP_H
00026 
00027 #include "WP6VariableLengthGroup.h"
00028 
00029 class WP6NumberingMethodGroup : public WP6VariableLengthGroup
00030 {
00031   public:
00032         WP6NumberingMethodGroup(WPXInputStream *input, WPXEncryption *encryption);      
00033         ~WP6NumberingMethodGroup();
00034         void _readContents(WPXInputStream *input, WPXEncryption *encryption);
00035         void parse(WP6Listener *listener);
00036   private:
00037         uint8_t m_levelNumber;
00038         uint8_t m_numberingMethod;
00039 };
00040 
00041 #endif /* WP6NUMBERINGMETHODGROUP_H */