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

« back to all changes in this revision

Viewing changes to src/lib/WP5AttributeGroup.h

  • Committer: Bazaar Package Importer
  • Author(s): Rene Engelhard
  • Date: 2005-12-09 16:20:02 UTC
  • mfrom: (1.1.3 upstream)
  • Revision ID: james.westby@ubuntu.com-20051209162002-6yx3aa0jrh06oocj
Tags: 0.8.4-2
* re-autogen to fix hppa build
* update automake builddep and add autoconf

Show diffs side-by-side

added added

removed removed

Lines of Context:
14
14
 *
15
15
 * You should have received a copy of the GNU Library General Public
16
16
 * License along with this library; if not, write to the Free Software
17
 
 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA
 
17
 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA
18
18
 *
19
19
 * For further information visit http://libwpd.sourceforge.net
20
20
 */
26
26
#ifndef WP5ATTRIBUTEGROUP_H
27
27
#define WP5ATTRIBUTEGROUP_H
28
28
 
29
 
#include "WP5HLListener.h"
 
29
#include "WP5Listener.h"
30
30
#include "WP5FixedLengthGroup.h"
31
31
 
32
32
class WP5AttributeGroup : public WP5FixedLengthGroup
33
33
{
34
34
 public:
35
35
        WP5AttributeGroup(WPXInputStream *input, uint8_t groupID);      
36
 
        virtual void parse(WP5HLListener *llListener) = 0;
 
36
        virtual void parse(WP5Listener *llListener) = 0;
37
37
        const uint8_t getAttribute() const { return m_attribute; }
38
38
        
39
39
 protected:
47
47
{
48
48
 public:
49
49
        WP5AttributeOnGroup(WPXInputStream *input, uint8_t groupID);
50
 
        virtual void parse(WP5HLListener *listener);
 
50
        virtual void parse(WP5Listener *listener);
51
51
};
52
52
 
53
53
class WP5AttributeOffGroup : public WP5AttributeGroup
54
54
{
55
55
 public:
56
56
        WP5AttributeOffGroup(WPXInputStream *input, uint8_t groupID);
57
 
        virtual void parse(WP5HLListener *listener);
 
57
        virtual void parse(WP5Listener *listener);
58
58
};
59
59
 
60
60
#endif /* WP5ATTRIBUTEGROUP_H */