~ubuntu-branches/ubuntu/trusty/libwpd/trusty

« back to all changes in this revision

Viewing changes to src/lib/WP5Parser.h

  • Committer: Bazaar Package Importer
  • Author(s): Rene Engelhard
  • Date: 2006-06-11 23:56:17 UTC
  • mfrom: (1.1.4 upstream)
  • Revision ID: james.westby@ubuntu.com-20060611235617-ce504k38fuqe8twa
Tags: 0.8.5-2
* dpatch'ize 
* add patch from upstream fixing WP5 font handling regression

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
/* libwpd
2
2
 * Copyright (C) 2003 William Lachance (william.lachance@sympatico.ca)
3
 
 * Copyright (C) 2003 Marc Maurer (j.m.maurer@student.utwente.nl)
 
3
 * Copyright (C) 2003 Marc Maurer (uwog@uwog.net)
4
4
 *  
5
5
 * This library is free software; you can redistribute it and/or
6
6
 * modify it under the terms of the GNU Library General Public
30
30
 
31
31
class WPXHLListenerImpl;
32
32
class WP5Listener;
 
33
class WP5PrefixData;
33
34
 
34
35
class WP5Parser : public WPXParser
35
36
{
36
37
public:
37
38
        WP5Parser(WPXInputStream *input, WPXHeader *header);
38
39
        ~WP5Parser();
39
 
 
 
40
        
40
41
        virtual void parse(WPXHLListenerImpl *listenerImpl);
41
42
        
42
43
        static void parseDocument(WPXInputStream *input, WP5Listener *listener);
43
44
 
44
45
private:
 
46
        WP5PrefixData * getPrefixData(WPXInputStream *input);
 
47
 
45
48
        void parse(WPXInputStream *input, WP5Listener *listener);
46
49
};
47
50