Code

ca4134d3883458c7ae418559eb0c7b069e5f2c9a
[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 "extension.h"
15 namespace Inkscape {
16 namespace Extension {
18 class PathEffect : public Extension {
20 public:
21                  PathEffect  (Inkscape::XML::Node * in_repr,
22                               Implementation::Implementation * in_imp);
23     virtual     ~PathEffect  (void);
24     void         processPath (Inkscape::XML::Node * node);
26 }; /* PathEffect */
29 } }  /* namespace Inkscape, Extension */
30 #endif /* INKSCAPE_EXTENSION_PATHEFFECT_H__ */
32 /*
33   Local Variables:
34   mode:c++
35   c-file-style:"stroustrup"
36   c-file-offsets:((innamespace . 0)(inline-open . 0)(case-label . +))
37   indent-tabs-mode:nil
38   fill-column:99
39   End:
40 */
41 // vim: filetype=cpp:expandtab:shiftwidth=4:tabstop=8:softtabstop=4 :