~ubuntu-branches/ubuntu/vivid/libwpd/vivid

« back to all changes in this revision

Viewing changes to src/lib/WP6ExtendedCharacterGroup.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:
33
33
class WP6ExtendedCharacterGroup : public WP6FixedLengthGroup
34
34
{
35
35
public:
36
 
        WP6ExtendedCharacterGroup(WPXInputStream *input, WPXEncryption *encryption, uint8_t groupID);
 
36
        WP6ExtendedCharacterGroup(librevenge::RVNGInputStream *input, WPXEncryption *encryption, unsigned char groupID);
37
37
        void parse(WP6Listener *listener);
38
38
 
39
39
protected:
40
 
        void _readContents(WPXInputStream *input, WPXEncryption *encryption);
 
40
        void _readContents(librevenge::RVNGInputStream *input, WPXEncryption *encryption);
41
41
 
42
42
private:
43
 
        uint8_t m_character;
44
 
        uint8_t m_characterSet;
 
43
        unsigned char m_character;
 
44
        unsigned char m_characterSet;
45
45
};
46
46
 
47
47
#endif /* WP6EXTENDEDCHARACTERGROUP_H */