~matttbe/ubuntu/raring/poppler/lp1072129

« back to all changes in this revision

Viewing changes to cpp/poppler-document-private.h

  • Committer: Package Import Robot
  • Author(s): Sebastien Bacher
  • Date: 2011-12-05 17:23:02 UTC
  • mfrom: (1.7.1)
  • Revision ID: package-import@ubuntu.com-20111205172302-tmhrk7s9hikjsa79
Tags: 0.18.2-0ubuntu1
* New upstream version, bugs fixed in the new version (lp: #869850):
  - lines and graphics wrongly rendered (lp: #603929) (lp: #780169)
  - rendering issues on some documents (lp: #784154)
  - some pages are displayed blank (lp: #817626)
* debian/control, debian/rules:
  - updated for the libpoppler and libpoppler-glib soname changes
* drop patches included in the new version
* debian/libpoppler-glib-dev.install:
  - drop deprecated test-poppler-glib
* debian/rules: 
  - drop deprecated qt3 and abiword configure options

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
/*
2
 
 * Copyright (C) 2009-2010, Pino Toscano <pino@kde.org>
 
2
 * Copyright (C) 2009-2011, Pino Toscano <pino@kde.org>
3
3
 *
4
4
 * This program is free software; you can redistribute it and/or modify
5
5
 * it under the terms of the GNU General Public License as published by
33
33
class document;
34
34
class embedded_file;
35
35
 
36
 
class document_private
 
36
class initer
 
37
{
 
38
public:
 
39
    initer();
 
40
    ~initer();
 
41
 
 
42
private:
 
43
    static unsigned int count;
 
44
};
 
45
 
 
46
class document_private : private initer
37
47
{
38
48
public:
39
49
    document_private(GooString *file_path, const std::string &owner_password,
53
63
    int raw_doc_data_length;
54
64
    bool is_locked;
55
65
    std::vector<embedded_file *> embedded_files;
56
 
 
57
 
private:
58
 
    void init();
59
 
 
60
 
    static unsigned int count;
61
66
};
62
67
 
63
68
}