Code

Converted star toobar to stock GTK+
[inkscape.git] / src / sp-filter-primitive.h
1 #ifndef __SP_FILTER_PRIMITIVE_H__
2 #define __SP_FILTER_PRIMITIVE_H__
5 #include "sp-object.h"
8 #define SP_TYPE_FILTER_PRIMITIVE (sp_filter_primitive_get_type ())
9 #define SP_FILTER_PRIMITIVE(obj) (G_TYPE_CHECK_INSTANCE_CAST ((obj), SP_TYPE_FILTER_PRIMITIVE, SPFilterPrimitive))
10 #define SP_FILTER_PRIMITIVE_CLASS(klass) (G_TYPE_CHECK_CLASS_CAST ((klass), SP_TYPE_FILTER_PRIMITIVE, SPFilterPrimitiveClass))
11 #define SP_IS_FILTER_PRIMITIVE(obj) (G_TYPE_CHECK_INSTANCE_TYPE ((obj), SP_TYPE_FILTER_PRIMITIVE))
12 #define SP_IS_FILTER_PRIMITIVE_CLASS(klass) (G_TYPE_CHECK_CLASS_TYPE ((klass), SP_TYPE_FILTER_PRIMITIVE))
14 class SPFilterPrimitive;
15 class SPFilterPrimitiveClass;
17 struct SPFilterPrimitive : public SPObject {
18 };
20 struct SPFilterPrimitiveClass {
21         SPObjectClass sp_object_class;
22 };
24 GType sp_filter_primitive_get_type (void);
26 #endif