~ubuntu-branches/ubuntu/saucy/libwpd/saucy

« back to all changes in this revision

Viewing changes to src/lib/WPXParser.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:
26
26
#ifndef WPXPARSER_H
27
27
#define WPXPARSER_H
28
28
 
29
 
#include <gsf/gsf-input.h>
30
29
#include "WPXHeader.h"
31
30
#include "WPXLLListener.h"
32
31
 
35
34
class WPXParser
36
35
{
37
36
public:
38
 
        WPXParser(GsfInput * input, WPXHeader *header);
 
37
        WPXParser(WPXInputStream * input, WPXHeader *header);
39
38
        virtual ~WPXParser();
40
39
 
41
40
        virtual void parse(WPXHLListenerImpl *listenerImpl) = 0;
42
41
 
43
42
protected:
44
43
        WPXHeader * getHeader() { return m_header; }
45
 
        GsfInput * getInput() { return m_input; }
 
44
        WPXInputStream * getInput() { return m_input; }
46
45
        
47
46
private:
48
 
        GsfInput * m_input;
 
47
        WPXInputStream * m_input;
49
48
        WPXLLListener * m_llListener;
50
49
 
51
50
        WPXHeader * m_header;