Code

changes to install he - hebrew
[inkscape.git] / src / sp-feflood.h
1 #ifndef SP_FEFLOOD_H_SEEN
2 #define SP_FEFLOOD_H_SEEN
4 /** \file
5  * SVG <feFlood> implementation, see sp-feFlood.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-feflood-fns.h"
19 /* FeFlood base class */
20 class SPFeFloodClass;
22 struct SPFeFlood : public SPFilterPrimitive {
23     /** FLOOD ATTRIBUTES HERE */
24     
25 };
27 struct SPFeFloodClass {
28     SPFilterPrimitiveClass parent_class;
29 };
31 GType sp_feFlood_get_type();
34 #endif /* !SP_FEFLOOD_H_SEEN */
36 /*
37   Local Variables:
38   mode:c++
39   c-file-style:"stroustrup"
40   c-file-offsets:((innamespace . 0)(inline-open . 0)(case-label . +))
41   indent-tabs-mode:nil
42   fill-column:99
43   End:
44 */
45 // vim: filetype=cpp:expandtab:shiftwidth=4:tabstop=8:softtabstop=4:encoding=utf-8:textwidth=99 :