Code

85623c6802bcb52d5902ed32eb104f4ab80012d2
[inkscape.git] / src / sp-fecolormatrix.h
1 #ifndef SP_FECOLORMATRIX_H_SEEN
2 #define SP_FECOLORMATRIX_H_SEEN
4 /** \file
5  * SVG <feColorMatrix> implementation, see sp-feColorMatrix.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-fecolormatrix-fns.h"
19 /* FeColorMatrix base class */
20 class SPFeColorMatrixClass;
22 struct SPFeColorMatrix : public SPFilterPrimitive {
23     /** COLORMATRIX ATTRIBUTES HERE */
24     
25 };
27 struct SPFeColorMatrixClass {
28     SPFilterPrimitiveClass parent_class;
29 };
31 GType sp_feColorMatrix_get_type();
34 #endif /* !SP_FECOLORMATRIX_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 :