Code

Filter effects dialog:
[inkscape.git] / src / sp-feblend.h
index 3119524ca33c1314380588e9559513ed9278d542..f6f71b892df50f3a9779ea5c2f36729bba9a75f9 100644 (file)
@@ -7,8 +7,9 @@
 /*
  * Authors:
  *   Hugo Rodrigues <haa.rodrigues@gmail.com>
+ *   Niko Kiirala <niko@kiirala.com>
  *
- * Copyright (C) 2006 Hugo Rodrigues
+ * Copyright (C) 2006,2007 authors
  *
  * Released under GNU GPL, read the file 'COPYING' for more information
  */
 #include "sp-filter.h"
 #include "sp-feblend-fns.h"
 
+#include "display/nr-filter-blend.h"
+
 /* FeBlend base class */
 class SPFeBlendClass;
 
-struct SPFeBlend : public SPFilter {
+struct SPFeBlend : public SPFilterPrimitive {
     /** BLEND ATTRIBUTES HERE */
-    
+    NR::FilterBlendMode blend_mode;
+    int in2;
 };
 
 struct SPFeBlendClass {
-    SPFilterClass parent_class;
+    SPFilterPrimitiveClass parent_class;
 };
 
 GType sp_feBlend_get_type();