Code

r11514@tres: ted | 2006-04-24 22:19:54 -0700
[inkscape.git] / src / extension / patheffect.cpp
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 "patheffect.h"
12 namespace Inkscape {
13 namespace Extension {
15 PathEffect::PathEffect (Inkscape::XML::Node * in_repr, Implementation::Implementation * in_imp)
16     : Extension(in_repr, in_imp)
17 {
19 }
21 PathEffect::~PathEffect (void)
22 {
24 }
26 void
27 PathEffect::processPath (Inkscape::XML::Node * node)
28 {
31 }
34 } }  /* namespace Inkscape, Extension */
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 :