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

« back to all changes in this revision

Viewing changes to src/lib/WP6ParagraphGroup.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)
120
121
 
121
122
class WP6ParagraphGroup : public WP6VariableLengthGroup
122
123
{
123
 
 public:
 
124
public:
124
125
        WP6ParagraphGroup(WPXInputStream *input, WPXEncryption *encryption);
125
126
        ~WP6ParagraphGroup();
126
127
        void _readContents(WPXInputStream *input, WPXEncryption *encryption);
127
128
        void parse(WP6Listener *listener);
128
129
private:
129
 
        WP6ParagraphGroup(const WP6ParagraphGroup&);
130
 
        WP6ParagraphGroup& operator=(const WP6ParagraphGroup&);
 
130
        WP6ParagraphGroup(const WP6ParagraphGroup &);
 
131
        WP6ParagraphGroup &operator=(const WP6ParagraphGroup &);
131
132
        WP6VariableLengthGroup_SubGroup *m_subGroupData;
132
133
};
133
134
 
134
135
#endif /* WP6PARAGRAPHGROUP_H */
 
136
/* vim:set shiftwidth=4 softtabstop=4 noexpandtab: */