Code

Refactoring SPColor to C++ and removing legacy CMYK implementation
[inkscape.git] / src / sp-feimage.h
index cb6f48f40f8981a8299c3349607a41ae54eadd63..6786471ad14fa19e14acfb6c7c1418a28459c9e4 100644 (file)
@@ -6,6 +6,7 @@
  */
 /*
  * Authors:
+ *   Felipe CorrĂȘa da Silva Sanches <felipe.sanches@gmail.com>
  *   Hugo Rodrigues <haa.rodrigues@gmail.com>
  *
  * Copyright (C) 2006 Hugo Rodrigues
 
 #include "sp-filter.h"
 #include "sp-feimage-fns.h"
+#include "svg/svg-length.h"
 
 /* FeImage base class */
 class SPFeImageClass;
 
 struct SPFeImage : public SPFilterPrimitive {
     /** IMAGE ATTRIBUTES HERE */
-    
+    /*
+        Apparently there's no attribute to keep here 
+        since 'in' and 'xlink:href' are common filter attributes.
+        --Juca
+    */
+    SVGLength x, y, height, width;
 };
 
 struct SPFeImageClass {