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

« back to all changes in this revision

Viewing changes to inkscape-0.47pre1/src/filters/mergenode.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 SP_FEMERGENODE_H_SEEN
 
2
#define SP_FEMERGENODE_H_SEEN
 
3
 
 
4
/** \file
 
5
 * feMergeNode implementation. A feMergeNode stores information about one
 
6
 * input image for feMerge filter primitive.
 
7
 */
 
8
/*
 
9
 * Authors:
 
10
 *   Kees Cook <kees@outflux.net>
 
11
 *   Niko Kiirala <niko@kiirala.com>
 
12
 *
 
13
 * Copyright (C) 2004,2007 authors
 
14
 *
 
15
 * Released under GNU GPL, read the file 'COPYING' for more information
 
16
 */
 
17
 
 
18
#include "sp-object.h"
 
19
 
 
20
#define SP_TYPE_FEMERGENODE (sp_feMergeNode_get_type())
 
21
#define SP_FEMERGENODE(o) (G_TYPE_CHECK_INSTANCE_CAST((o), SP_TYPE_FEMERGENODE, SPFeMergeNode))
 
22
#define SP_IS_FEMERGENODE(o) (G_TYPE_CHECK_INSTANCE_TYPE((o), SP_TYPE_FEMERGENODE))
 
23
 
 
24
class SPFeMergeNode;
 
25
class SPFeMergeNodeClass;
 
26
 
 
27
struct SPFeMergeNode : public SPObject {
 
28
    int input;
 
29
};
 
30
 
 
31
struct SPFeMergeNodeClass {
 
32
    SPObjectClass parent_class;
 
33
};
 
34
 
 
35
GType sp_feMergeNode_get_type();
 
36
 
 
37
 
 
38
#endif /* !SP_FEMERGENODE_H_SEEN */
 
39
 
 
40
/*
 
41
  Local Variables:
 
42
  mode:c++
 
43
  c-file-style:"stroustrup"
 
44
  c-file-offsets:((innamespace . 0)(inline-open . 0)(case-label . +))
 
45
  indent-tabs-mode:nil
 
46
  fill-column:99
 
47
  End:
 
48
*/
 
49
// vim: filetype=cpp:expandtab:shiftwidth=4:tabstop=8:softtabstop=4:encoding=utf-8:textwidth=99 :