Code

feMorphology filter primitive implementation
[inkscape.git] / src / sp-feimage.h
1 #ifndef SP_FEIMAGE_H_SEEN
2 #define SP_FEIMAGE_H_SEEN
4 /** \file
5  * SVG <feImage> implementation, see sp-feImage.cpp.
6  */
7 /*
8  * Authors:
9  *   Felipe CorrĂȘa da Silva Sanches <felipe.sanches@gmail.com>
10  *   Hugo Rodrigues <haa.rodrigues@gmail.com>
11  *
12  * Copyright (C) 2006 Hugo Rodrigues
13  *
14  * Released under GNU GPL, read the file 'COPYING' for more information
15  */
17 #include "sp-filter.h"
18 #include "sp-feimage-fns.h"
20 /* FeImage base class */
21 class SPFeImageClass;
23 struct SPFeImage : public SPFilterPrimitive {
24     /** IMAGE ATTRIBUTES HERE */
25     /*
26         Apparently there's no attribute to keep here 
27         since 'in' and 'xlink:href' are common filter attributes.
28         --Juca
29     */
30 };
32 struct SPFeImageClass {
33     SPFilterPrimitiveClass parent_class;
34 };
36 GType sp_feImage_get_type();
39 #endif /* !SP_FEIMAGE_H_SEEN */
41 /*
42   Local Variables:
43   mode:c++
44   c-file-style:"stroustrup"
45   c-file-offsets:((innamespace . 0)(inline-open . 0)(case-label . +))
46   indent-tabs-mode:nil
47   fill-column:99
48   End:
49 */
50 // vim: filetype=cpp:expandtab:shiftwidth=4:tabstop=8:softtabstop=4:encoding=utf-8:textwidth=99 :