Code

fix combo enum, to handle enums of all types (not only the ones that range from 0...
[inkscape.git] / src / sp-fecolormatrix.h
index 6dc0b6966a83c36eb1aa09db548ef6132e19a02e..e091a0725282d2d84abc65db41d53fc34897aeb1 100644 (file)
 
 #include "sp-filter.h"
 #include "sp-fecolormatrix-fns.h"
-
-#include "display/nr-filter.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 {