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

« back to all changes in this revision

Viewing changes to src/lib/WPXListener.h

  • Committer: Package Import Robot
  • Author(s): Rene Engelhard
  • Date: 2011-11-29 23:31:13 UTC
  • mfrom: (1.2.5)
  • Revision ID: package-import@ubuntu.com-20111129233113-xdtwca9h0y6wdxst
Tags: 0.9.4-1
New upstream release

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: t; c-basic-offset: 4 -*- */
1
2
/* libwpd
2
3
 * Copyright (C) 2002 William Lachance (wrlach@gmail.com)
3
4
 * Copyright (C) 2002 Marc Maurer (uwog@uwog.net)
36
37
        WPXListener(std::list<WPXPageSpan> &pageList);
37
38
        virtual ~WPXListener();
38
39
 
39
 
        bool isUndoOn() { return m_isUndoOn; }
40
 
        void setUndoOn(bool isOn) { m_isUndoOn = isOn; }
 
40
        bool isUndoOn()
 
41
        {
 
42
                return m_isUndoOn;
 
43
        }
 
44
        void setUndoOn(bool isOn)
 
45
        {
 
46
                m_isUndoOn = isOn;
 
47
        }
41
48
 
42
49
        std::list<WPXPageSpan> &m_pageList;
43
 
        
 
50
 
44
51
private:
45
52
        bool m_isUndoOn;
46
53
};
47
54
 
48
55
#endif /* WPXLISTENER_H */
 
56
/* vim:set shiftwidth=4 softtabstop=4 noexpandtab: */