~centralelyon2010/inkscape/imagelinks2

« back to all changes in this revision

Viewing changes to src/filters/mergenode.h

  • Committer: Ted Gould
  • Date: 2008-11-21 05:24:08 UTC
  • Revision ID: ted@canonical.com-20081121052408-tilucis2pjrrpzxx
MergeĀ fromĀ fe-moved

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 :