~ubuntu-branches/ubuntu/gutsy/libwpd/gutsy

« back to all changes in this revision

Viewing changes to src/lib/WP1Parser.h

  • Committer: Bazaar Package Importer
  • Author(s): Rene Engelhard
  • Date: 2006-10-24 12:14:42 UTC
  • mfrom: (1.1.6 upstream)
  • Revision ID: james.westby@ubuntu.com-20061024121442-z8c0itk65vgwmu3g
Tags: 0.8.7-4
update debian/copyright, mmh... 

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/* libwpd
 
2
 * Copyright (C) 2003 William Lachance (wrlach@gmail.com)
 
3
 * Copyright (C) 2003 Marc Maurer (uwog@uwog.net)
 
4
 * Copyright (C) 2006 Fridrich Strba (fridrich.strba@bluewin.ch)
 
5
 *  
 
6
 * This library is free software; you can redistribute it and/or
 
7
 * modify it under the terms of the GNU Library General Public
 
8
 * License as published by the Free Software Foundation; either
 
9
 * version 2 of the License, or (at your option) any later version.
 
10
 *
 
11
 * This library is distributed in the hope that it will be useful,
 
12
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 
13
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
 
14
 * Library General Public License for more details.
 
15
 *
 
16
 * You should have received a copy of the GNU Library General Public
 
17
 * License along with this library; if not, write to the Free Software
 
18
 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA
 
19
 *
 
20
 * For further information visit http://libwpd.sourceforge.net
 
21
 */
 
22
 
 
23
/* "This product is not manufactured, approved, or supported by 
 
24
 * Corel Corporation or Corel Corporation Limited."
 
25
 */
 
26
 
 
27
#ifndef WP1PARSER_H
 
28
#define WP1PARSER_H
 
29
 
 
30
#include "WPXParser.h"
 
31
#include "WP1Listener.h"
 
32
 
 
33
class WPXHLListenerImpl;
 
34
 
 
35
class WP1Parser : public WPXParser
 
36
{
 
37
public:
 
38
        WP1Parser(WPXInputStream *input);
 
39
        ~WP1Parser();
 
40
 
 
41
        void parse(WPXHLListenerImpl *listenerImpl);
 
42
 
 
43
        static void parseDocument(WPXInputStream *input, WP1Listener *listener);
 
44
 
 
45
private:
 
46
        void parse(WPXInputStream *input, WP1Listener *listener);
 
47
};
 
48
 
 
49
#endif /* WP1PARSER_H */