Code

part of bug #339660; can not use Add/Rename dialog to create layer with no proper...
[inkscape.git] / src / extension / patheffect.h
index ca4134d3883458c7ae418559eb0c7b069e5f2c9a..0c00ae093ab8a783ea6e90a90eb59239029722fc 100644 (file)
@@ -10,6 +10,7 @@
 #ifndef INKSCAPE_EXTENSION_PATHEFFECT_H__
 #define INKSCAPE_EXTENSION_PATHEFFECT_H__
 
+#include "document.h"
 #include "extension.h"
 
 namespace Inkscape {
@@ -21,8 +22,11 @@ public:
                  PathEffect  (Inkscape::XML::Node * in_repr,
                               Implementation::Implementation * in_imp);
     virtual     ~PathEffect  (void);
-    void         processPath (Inkscape::XML::Node * node);
-
+    void         processPath (SPDocument * doc,
+                              Inkscape::XML::Node * path,
+                              Inkscape::XML::Node * def);
+    static void  processPathEffects (SPDocument * doc,
+                                     Inkscape::XML::Node * path);
 }; /* PathEffect */