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

« back to all changes in this revision

Viewing changes to src/lib/WP6ExtendedDocumentSummaryPacket.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)
4
 
 *  
 
5
 *
5
6
 * This library is free software; you can redistribute it and/or
6
7
 * modify it under the terms of the GNU Library General Public
7
8
 * License as published by the Free Software Foundation; either
19
20
 * For further information visit http://libwpd.sourceforge.net
20
21
 */
21
22
 
22
 
/* "This product is not manufactured, approved, or supported by 
 
23
/* "This product is not manufactured, approved, or supported by
23
24
 * Corel Corporation or Corel Corporation Limited."
24
25
 */
25
26
 
33
34
 
34
35
class WP6ExtendedDocumentSummaryPacket : public WP6PrefixDataPacket
35
36
{
36
 
 public:
 
37
public:
37
38
        WP6ExtendedDocumentSummaryPacket(WPXInputStream *input, WPXEncryption *encryption, int id, uint32_t dataOffset, uint32_t dataSize);
38
39
        ~WP6ExtendedDocumentSummaryPacket();
39
40
        void _readContents(WPXInputStream *input, WPXEncryption *encryption);
40
41
        void parse(WP6Listener *listener) const;
41
42
 
42
 
 private:
43
 
        WP6ExtendedDocumentSummaryPacket(const WP6ExtendedDocumentSummaryPacket&);            
44
 
        WP6ExtendedDocumentSummaryPacket& operator=(const WP6ExtendedDocumentSummaryPacket&);            
 
43
private:
 
44
        WP6ExtendedDocumentSummaryPacket(const WP6ExtendedDocumentSummaryPacket &);
 
45
        WP6ExtendedDocumentSummaryPacket &operator=(const WP6ExtendedDocumentSummaryPacket &);
45
46
        uint32_t m_dataSize;
46
47
        uint8_t *m_streamData;
47
48
        mutable WPXMemoryInputStream *m_stream;
48
 
        
 
49
 
49
50
};
50
51
#endif /* WP6EXTENDEDDOCUMENTSUMMARYPACKET_H */
 
52
/* vim:set shiftwidth=4 softtabstop=4 noexpandtab: */