~ubuntu-branches/ubuntu/edgy/libwpd/edgy-security

« back to all changes in this revision

Viewing changes to src/lib/WP42Parser.h

  • Committer: Bazaar Package Importer
  • Author(s): Rene Engelhard
  • Date: 2005-07-03 20:55:49 UTC
  • mfrom: (1.1.2 upstream)
  • Revision ID: james.westby@ubuntu.com-20050703205549-t8o91w9rgd7yb3qf
Tags: 0.8.2-2
* C++ ABI transition
  - rename libwpd8 / libwpd-stream8 to ...8c2 and replace/conflict (with)
    the old library. Change debian/rules, *.files and .shlibs for the new
    package names

Show diffs side-by-side

added added

removed removed

Lines of Context:
34
34
class WP42Parser : public WPXParser
35
35
{
36
36
public:
37
 
        WP42Parser(GsfInput *input);
 
37
        WP42Parser(WPXInputStream *input);
38
38
        ~WP42Parser();
39
39
 
40
40
        virtual void parse(WPXHLListenerImpl *listenerImpl);
41
41
 
42
 
        static void parseDocument(GsfInput *input, WP42HLListener *listener);
 
42
        static void parseDocument(WPXInputStream *input, WP42HLListener *listener);
43
43
 
44
44
private:
45
 
        void parse(GsfInput *input, WP42HLListener *listener);
 
45
        void parse(WPXInputStream *input, WP42HLListener *listener);
46
46
};
47
47
 
48
48
#endif /* WP42PARSER_H */