Code

r11138@tres: ted | 2006-03-27 21:15:14 -0800
[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 #include "extension.h"
12 namespace Inkscape {
13 namespace Extension {
15 class PathEffect : public Extension {
17 public:
18                  PathEffect  (Inkscape::XML::Node * in_repr,
19                               Implementation::Implementation * in_imp);
20     virtual     ~PathEffect  (void);
21     void         processPath (Inkscape::XML::Node * node);
23 }; /* PathEffect */
26 } }  /* namespace Inkscape, Extension */
27 #endif /* INKSCAPE_EXTENSION_EFFECT_H__ */
29 /*
30   Local Variables:
31   mode:c++
32   c-file-style:"stroustrup"
33   c-file-offsets:((innamespace . 0)(inline-open . 0)(case-label . +))
34   indent-tabs-mode:nil
35   fill-column:99
36   End:
37 */
38 // vim: filetype=cpp:expandtab:shiftwidth=4:tabstop=8:softtabstop=4 :