~ubuntu-branches/ubuntu/wily/libwpd/wily-proposed

« back to all changes in this revision

Viewing changes to src/lib/WP5TableEOLGroup.h

  • Committer: Package Import Robot
  • Author(s): Rene Engelhard
  • Date: 2014-08-08 00:35:26 UTC
  • mfrom: (11.1.8 experimental)
  • Revision ID: package-import@ubuntu.com-20140808003526-7pku3062w50cnsod
Tags: 0.10.0-2
* upload to unstable

* fix debian/copyright for MPL-2.0 | LGPL-2.1+ dual-license 

Show diffs side-by-side

added added

removed removed

Lines of Context:
32
32
class WP5TableEOLGroup : public WP5VariableLengthGroup
33
33
{
34
34
public:
35
 
        WP5TableEOLGroup(WPXInputStream *input, WPXEncryption *encryption);
 
35
        WP5TableEOLGroup(librevenge::RVNGInputStream *input, WPXEncryption *encryption);
36
36
        ~WP5TableEOLGroup();
37
 
        void _readContents(WPXInputStream *input, WPXEncryption *encryption);
 
37
        void _readContents(librevenge::RVNGInputStream *input, WPXEncryption *encryption);
38
38
        void parse(WP5Listener *listener);
39
39
 
40
40
private:
41
41
        // Beginning column sub-function
42
 
        uint8_t m_cellVerticalAlignment;
 
42
        unsigned char m_cellVerticalAlignment;
43
43
        bool m_useCellAttributes;
44
44
        bool m_useCellJustification;
45
 
        uint8_t m_columnNumber;
46
 
        uint8_t m_colSpan;
47
 
        uint8_t m_rowSpan;
 
45
        unsigned char m_columnNumber;
 
46
        unsigned char m_colSpan;
 
47
        unsigned char m_rowSpan;
48
48
        bool m_spannedFromAbove;
49
 
        uint16_t m_cellAttributes;
50
 
        uint8_t m_cellJustification;
 
49
        unsigned short m_cellAttributes;
 
50
        unsigned char m_cellJustification;
51
51
};
52
52
 
53
53
#endif /* WP5TABLEEOLGROUP_H */