~ubuntu-branches/ubuntu/oneiric/pdfmod/oneiric

« back to all changes in this revision

Viewing changes to lib/PdfSharp/PdfSharp.Pdf/PdfNumberObject.cs

  • Committer: Bazaar Package Importer
  • Author(s): Chow Loong Jin
  • Date: 2010-09-29 17:34:49 UTC
  • mfrom: (2.1.1 experimental)
  • Revision ID: james.westby@ubuntu.com-20100929173449-4ezagrzettatjk36
Tags: 0.9.0-1
* New upstream release
* debian/copyright: Document PdfSharp.SharpZipLib/*
* Drop all patches: committed upstream
* No change bump of Standards-Version from 3.8.4 to 3.9.1

Show diffs side-by-side

added added

removed removed

Lines of Context:
3
3
// Authors:
4
4
//   Stefan Lange (mailto:Stefan.Lange@pdfsharp.com)
5
5
//
6
 
// Copyright (c) 2005-2008 empira Software GmbH, Cologne (Germany)
 
6
// Copyright (c) 2005-2009 empira Software GmbH, Cologne (Germany)
7
7
//
8
8
// http://www.pdfsharp.com
9
9
// http://sourceforge.net/projects/pdfsharp
44
44
    /// <summary>
45
45
    /// Initializes a new instance of the <see cref="PdfNumberObject"/> class.
46
46
    /// </summary>
47
 
    public PdfNumberObject()
 
47
    protected PdfNumberObject()
48
48
    {
49
49
    }
50
50
 
52
52
    /// Initializes a new instance of the <see cref="PdfNumberObject"/> class.
53
53
    /// </summary>
54
54
    /// <param name="document">The document.</param>
55
 
    public PdfNumberObject(PdfDocument document) : base(document)
 
55
    protected PdfNumberObject(PdfDocument document) : base(document)
56
56
    {
57
57
    }
58
58
  }