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

« back to all changes in this revision

Viewing changes to src/lib/WP6SetNumberGroup.cpp

  • 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)
30
31
#include "libwpd_internal.h"
31
32
 
32
33
 
33
 
WP6SetNumberGroup::WP6SetNumberGroup(WPXInputStream *input, 
34
 
                                     WPXEncryption *encryption) :
35
 
        WP6VariableLengthGroup()
 
34
WP6SetNumberGroup::WP6SetNumberGroup(WPXInputStream *input,
 
35
                                     WPXEncryption *encryption) :
 
36
        WP6VariableLengthGroup(),
 
37
        m_countOfLevelNumbersSetting(0x00),
 
38
        m_startingLevelNumber(0x00),
 
39
        m_countNumbers(0)
36
40
{
37
41
        _read(input, encryption);
38
42
}
65
69
                break;
66
70
        }
67
71
}
 
72
/* vim:set shiftwidth=4 softtabstop=4 noexpandtab: */