1 #ifndef SP_FEMERGE_H_SEEN
2 #define SP_FEMERGE_H_SEEN
4 /** \file
5 * SVG <feMerge> implementation, see sp-feMerge.cpp.
6 */
7 /*
8 * Authors:
9 * Hugo Rodrigues <haa.rodrigues@gmail.com>
10 *
11 * Copyright (C) 2006 Hugo Rodrigues
12 *
13 * Released under GNU GPL, read the file 'COPYING' for more information
14 */
16 #include "sp-filter.h"
17 #include "sp-femerge-fns.h"
19 /* FeMerge base class */
20 class SPFeMergeClass;
22 struct SPFeMerge : public SPFilterPrimitive {
24 };
26 struct SPFeMergeClass {
27 SPFilterPrimitiveClass parent_class;
28 };
30 GType sp_feMerge_get_type();
33 #endif /* !SP_FEMERGE_H_SEEN */
35 /*
36 Local Variables:
37 mode:c++
38 c-file-style:"stroustrup"
39 c-file-offsets:((innamespace . 0)(inline-open . 0)(case-label . +))
40 indent-tabs-mode:nil
41 fill-column:99
42 End:
43 */
44 // vim: filetype=cpp:expandtab:shiftwidth=4:tabstop=8:softtabstop=4:encoding=utf-8:textwidth=99 :