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

« back to all changes in this revision

Viewing changes to src/lib/WPXListener.h

  • Committer: Bazaar Package Importer
  • Author(s): Rene Engelhard
  • Date: 2006-07-15 11:58:12 UTC
  • mfrom: (1.1.5 upstream)
  • Revision ID: james.westby@ubuntu.com-20060715115812-v18efmdayby4clau
Tags: 0.8.6-1
* New upstream release
* swap maintainer/uploader

Show diffs side-by-side

added added

removed removed

Lines of Context:
29
29
 
30
30
#include "libwpd_internal.h"
31
31
#include "WPXString.h"
 
32
#include "WPXPageSpan.h"
32
33
#include <vector>
33
 
 
34
 
#if 0
35
 
typedef struct _WPXDocumentMetaData;
36
 
struct _WPXDocumentMetaData
37
 
{
38
 
        WPXString m_author;
39
 
        WPXString m_subject;
40
 
        WPXString m_publisher;
41
 
        WPXString m_category;
42
 
        WPXString m_keywords;
43
 
        WPXString m_language;
44
 
        WPXString m_abstract;
45
 
        WPXString m_descriptiveName;
46
 
        WPXString m_descriptiveType;
47
 
};
48
 
#endif
 
34
#include <list>
49
35
 
50
36
class WPXListener
51
37
{
52
38
protected:
53
 
        WPXListener();
 
39
        WPXListener(std::list<WPXPageSpan> &pageList);
54
40
        virtual ~WPXListener();
55
41
 
56
42
        bool isUndoOn() { return m_isUndoOn; }
57
43
        void setUndoOn(bool isUndoOn) { m_isUndoOn = isUndoOn; }
 
44
 
 
45
        std::list<WPXPageSpan> &m_pageList;
58
46
        
59
47
private:
60
48
        bool m_isUndoOn;