Code

spiral-context.h: Supply missing #includes/declarations so that we don't depend on...
[inkscape.git] / src / sp-fecolormatrix.h
index 85623c6802bcb52d5902ed32eb104f4ab80012d2..e091a0725282d2d84abc65db41d53fc34897aeb1 100644 (file)
 
 #include "sp-filter.h"
 #include "sp-fecolormatrix-fns.h"
+#include "display/nr-filter-colormatrix.h"
+#include <vector>
 
 /* FeColorMatrix base class */
 class SPFeColorMatrixClass;
 
 struct SPFeColorMatrix : public SPFilterPrimitive {
     /** COLORMATRIX ATTRIBUTES HERE */
-    
+    NR::FilterColorMatrixType type;
+    gdouble value;
+    std::vector<gdouble> values;
 };
 
 struct SPFeColorMatrixClass {