X-Git-Url: https://git.tokkee.org/?a=blobdiff_plain;ds=sidebyside;f=src%2Fextension%2Fpatheffect.h;h=0c00ae093ab8a783ea6e90a90eb59239029722fc;hb=22e5d80ca99dd066de2fabd41c6830300a0e81a5;hp=ca4134d3883458c7ae418559eb0c7b069e5f2c9a;hpb=4869b75af53c78696249a11ed6d24f79e947e7fa;p=inkscape.git diff --git a/src/extension/patheffect.h b/src/extension/patheffect.h index ca4134d38..0c00ae093 100644 --- a/src/extension/patheffect.h +++ b/src/extension/patheffect.h @@ -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 */