Code

Super duper mega (fun!) commit: replaced encoding=utf-8 with fileencoding=utf-8 in...
[inkscape.git] / src / filters / merge.h
1 #ifndef SP_FEMERGE_H_SEEN
2 #define SP_FEMERGE_H_SEEN
4 /** \file
5  * SVG <feMerge> implementation, see Merge.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 "merge-fns.h"
19 /* FeMerge base class */
20 class SPFeMergeClass;
22 struct SPFeMerge : public SPFilterPrimitive {
23     
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:fileencoding=utf-8:textwidth=99 :