Code

Filters. Custom predefined filters update and new ABC filters.
[inkscape.git] / src / sp-gaussian-blur.h
1 #ifndef SP_GAUSSIANBLUR_H_SEEN
2 #define SP_GAUSSIANBLUR_H_SEEN
4 /** \file
5  * SVG <gaussianBlur> implementation, see sp-gaussianBlur.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-gaussian-blur-fns.h"
19 /* GaussianBlur base class */
20 class SPGaussianBlurClass;
22 struct SPGaussianBlur : public SPFilterPrimitive {
23     /** stdDeviation attribute */
24     NumberOptNumber stdDeviation;
25 };
27 struct SPGaussianBlurClass {
28     SPFilterPrimitiveClass parent_class;
29 };
31 GType sp_gaussianBlur_get_type();
34 #endif /* !SP_GAUSSIANBLUR_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:fileencoding=utf-8:textwidth=99 :