Code

OCAL. Fix for Bug #638844 (Errors printed to console if openclipart search fails).
[inkscape.git] / src / extension / patheffect.h
1 /*
2  * Authors:
3  *   Ted Gould <ted@gould.cx>
4  *
5  * Copyright (C) 2006 Authors
6  *
7  * Released under GNU GPL, read the file 'COPYING' for more information
8  */
10 #ifndef INKSCAPE_EXTENSION_PATHEFFECT_H__
11 #define INKSCAPE_EXTENSION_PATHEFFECT_H__
13 #include "document.h"
14 #include "extension.h"
16 namespace Inkscape {
17 namespace Extension {
19 class PathEffect : public Extension {
21 public:
22                  PathEffect  (Inkscape::XML::Node * in_repr,
23                               Implementation::Implementation * in_imp);
24     virtual     ~PathEffect  (void);
25     void         processPath (SPDocument * doc,
26                               Inkscape::XML::Node * path,
27                               Inkscape::XML::Node * def);
28     static void  processPathEffects (SPDocument * doc,
29                                      Inkscape::XML::Node * path);
30 }; /* PathEffect */
33 } }  /* namespace Inkscape, Extension */
34 #endif /* INKSCAPE_EXTENSION_PATHEFFECT_H__ */
36 /*
37   Local Variables:
38   mode:c++
39   c-file-style:"stroustrup"
40   c-file-offsets:((innamespace . 0)(inline-open . 0)(case-label . +))
41   indent-tabs-mode:nil
42   fill-column:99
43   End:
44 */
45 // vim: filetype=cpp:expandtab:shiftwidth=4:tabstop=8:softtabstop=4 :