sp-fecolormatrix-fns.h revision 761a541468cc0b8a7fcfb8c65784c0896f0f80f4
#ifndef SP_FECOLORMATRIX_FNS_H
#define SP_FECOLORMATRIX_FNS_H
/** \file
* Macros and fn declarations related to gaussian blur filter.
*/
#include <glib-object.h>
#include <glib/gtypes.h>
namespace Inkscape {
namespace XML {
class Node;
}
}
class SPFeColorMatrix;
#define SP_TYPE_FECOLORMATRIX (sp_feColorMatrix_get_type())
#define SP_FECOLORMATRIX(obj) (G_TYPE_CHECK_INSTANCE_CAST((obj), SP_TYPE_FECOLORMATRIX, SPFeColorMatrix))
#define SP_FECOLORMATRIX_CLASS(klass) (G_TYPE_CHECK_CLASS_CAST((klass), SP_TYPE_FECOLORMATRIX, SPFeColorMatrixClass))
#define SP_IS_FECOLORMATRIX(obj) (G_TYPE_CHECK_INSTANCE_TYPE((obj), SP_TYPE_FECOLORMATRIX))
#define SP_IS_FECOLORMATRIX_CLASS(klass) (G_TYPE_CHECK_CLASS_TYPE((klass), SP_TYPE_FECOLORMATRIX))
GType sp_feColorMatrix_get_type();
#endif /* !SP_FECOLORMATRIX_FNS_H */
/*
Local Variables:
mode:c++
c-file-style:"stroustrup"
c-file-offsets:((innamespace . 0)(inline-open . 0)(case-label . +))
indent-tabs-mode:nil
fill-column:99
End:
*/
// vim: filetype=cpp:expandtab:shiftwidth=4:tabstop=8:softtabstop=4:encoding=utf-8:textwidth=99 :