~valavanisalex/ubuntu/precise/inkscape/fix-943984

« back to all changes in this revision

Viewing changes to inkscape-0.47pre1/src/extension/internal/svgz.h

  • Committer: Bazaar Package Importer
  • Author(s): Bryce Harrington
  • Date: 2009-07-02 17:09:45 UTC
  • mfrom: (1.1.9 upstream)
  • Revision ID: james.westby@ubuntu.com-20090702170945-nn6d6zswovbwju1t
Tags: 0.47~pre1-0ubuntu1
* New upstream release.
  - Don't constrain maximization on small resolution devices (pre0)
    (LP: #348842)
  - Fixes segfault on startup (pre0)
    (LP: #391149)

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/*
 
2
 * Code to handle compressed SVG loading and saving. Almost identical to svg
 
3
 * routines, but separated for simpler extension maintenance.
 
4
 *
 
5
 * Authors:
 
6
 *   Lauris Kaplinski <lauris@kaplinski.com>
 
7
 *   Ted Gould <ted@gould.cx>
 
8
 *   Jon A. Cruz <jon@joncruz.org>
 
9
 *
 
10
 * Copyright (C) 2002-2005 Authors
 
11
 *
 
12
 * Released under GNU GPL, read the file 'COPYING' for more information
 
13
 */
 
14
 
 
15
#ifndef SEEN_SVGZ_H
 
16
#define SEEN_SVGZ_H
 
17
 
 
18
#include "svg.h"
 
19
 
 
20
namespace Inkscape {
 
21
namespace Extension {
 
22
namespace Internal {
 
23
 
 
24
class Svgz : public Svg {
 
25
public:
 
26
    static void init( void );
 
27
};
 
28
 
 
29
} } }  // namespace Inkscape, Extension, Implementation
 
30
#endif // SEEN_SVGZ_H
 
31
 
 
32
/*
 
33
  Local Variables:
 
34
  mode:c++
 
35
  c-file-style:"stroustrup"
 
36
  c-file-offsets:((innamespace . 0)(inline-open . 0))
 
37
  indent-tabs-mode:nil
 
38
  fill-column:99
 
39
  End:
 
40
*/
 
41
// vim: filetype=cpp:expandtab:shiftwidth=4:tabstop=8:softtabstop=4 :