~ubuntu-branches/ubuntu/trusty/libwpd/trusty

« back to all changes in this revision

Viewing changes to src/lib/WP42SubDocument.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:
 
1
/* libwpd
 
2
 * Copyright (C) 2006 Fridrich Strba (fridrich.strba@bluewin.ch)
 
3
 *  
 
4
 * This library is free software; you can redistribute it and/or
 
5
 * modify it under the terms of the GNU Library General Public
 
6
 * License as published by the Free Software Foundation; either
 
7
 * version 2 of the License, or (at your option) any later version.
 
8
 *
 
9
 * This library is distributed in the hope that it will be useful,
 
10
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 
11
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
 
12
 * Library General Public License for more details.
 
13
 *
 
14
 * You should have received a copy of the GNU Library General Public
 
15
 * License along with this library; if not, write to the Free Software
 
16
 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA
 
17
 *
 
18
 * For further information visit http://libwpd.sourceforge.net
 
19
 */
 
20
 
 
21
/* "This product is not manufactured, approved, or supported by 
 
22
 * Corel Corporation or Corel Corporation Limited."
 
23
 */
 
24
 
 
25
#ifndef WP42SUBDOCUMENT_H
 
26
#define WP42SUBDOCUMENT_H
 
27
 
 
28
#include "WPXMemoryStream.h"
 
29
#include "WPXSubDocument.h"
 
30
#include "WP42Listener.h"
 
31
 
 
32
class WP42SubDocument : public WPXSubDocument
 
33
{
 
34
public:
 
35
        WP42SubDocument(uint8_t * streamData, const int dataSize);
 
36
        WP42SubDocument(WPXInputStream *input, const int dataSize);
 
37
        void parse(WP42Listener *listener) const;
 
38
 
 
39
};
 
40
#endif /* WP42SUBDOCUMENT_H */