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

« back to all changes in this revision

Viewing changes to inkscape-0.47pre1/src/extension/internal/svg.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
 * This is the code that moves all of the SVG loading and saving into
 
3
 * the module format.  Really Sodipodi is built to handle these formats
 
4
 * internally, so this is just calling those internal functions.
 
5
 *
 
6
 * Authors:
 
7
 *   Lauris Kaplinski <lauris@kaplinski.com>
 
8
 *   Ted Gould <ted@gould.cx>
 
9
 *
 
10
 * Copyright (C) 2002-2003 Authors
 
11
 *
 
12
 * Released under GNU GPL, read the file 'COPYING' for more information
 
13
 */
 
14
 
 
15
#ifndef __SVG_H__
 
16
#define __SVG_H__
 
17
 
 
18
#include "../implementation/implementation.h"
 
19
 
 
20
namespace Inkscape {
 
21
namespace Extension {
 
22
namespace Internal {
 
23
 
 
24
class Svg : public Inkscape::Extension::Implementation::Implementation {
 
25
 
 
26
public:
 
27
    virtual void        save( Inkscape::Extension::Output *mod,
 
28
                               SPDocument *doc,
 
29
                               gchar const *filename );
 
30
    virtual SPDocument *open( Inkscape::Extension::Input *mod,
 
31
                                const gchar *uri );
 
32
    static void         init( void );
 
33
 
 
34
};
 
35
 
 
36
} } }  /* namespace Inkscape, Extension, Implementation */
 
37
#endif /* __SVG_H__ */
 
38
 
 
39
/*
 
40
  Local Variables:
 
41
  mode:c++
 
42
  c-file-style:"stroustrup"
 
43
  c-file-offsets:((innamespace . 0)(inline-open . 0))
 
44
  indent-tabs-mode:nil
 
45
  fill-column:99
 
46
  End:
 
47
*/
 
48
// vim: filetype=cpp:expandtab:shiftwidth=4:tabstop=8:softtabstop=4 :