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

« back to all changes in this revision

Viewing changes to inkscape-0.47pre1/src/extension/internal/gdkpixbuf-input.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
#ifndef INKSCAPE_EXTENSION_INTERNAL_GDKPIXBUF_INPUT_H
 
2
#define INKSCAPE_EXTENSION_INTERNAL_GDKPIXBUF_INPUT_H
 
3
 
 
4
#include "extension/implementation/implementation.h"
 
5
 
 
6
namespace Inkscape {
 
7
namespace Extension {
 
8
namespace Internal {
 
9
 
 
10
class GdkpixbufInput : Inkscape::Extension::Implementation::Implementation {
 
11
public:
 
12
    SPDocument *open(Inkscape::Extension::Input *mod,
 
13
                     gchar const *uri);
 
14
    static void init();
 
15
};
 
16
 
 
17
} } }  /* namespace Inkscape, Extension, Implementation */
 
18
 
 
19
 
 
20
#endif /* INKSCAPE_EXTENSION_INTERNAL_GDKPIXBUF_INPUT_H */
 
21
 
 
22
/*
 
23
  Local Variables:
 
24
  mode:c++
 
25
  c-file-style:"stroustrup"
 
26
  c-file-offsets:((innamespace . 0)(inline-open . 0)(case-label . +))
 
27
  indent-tabs-mode:nil
 
28
  fill-column:99
 
29
  End:
 
30
*/
 
31
// vim: filetype=cpp:expandtab:shiftwidth=4:tabstop=8:softtabstop=4:encoding=utf-8:textwidth=99 :