summaryrefslogtreecommitdiffstats
path: root/src/extension/patheffect.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/extension/patheffect.h')
-rw-r--r--src/extension/patheffect.h40
1 files changed, 40 insertions, 0 deletions
diff --git a/src/extension/patheffect.h b/src/extension/patheffect.h
new file mode 100644
index 000000000..f44df986e
--- /dev/null
+++ b/src/extension/patheffect.h
@@ -0,0 +1,40 @@
+/*
+ * Authors:
+ * Ted Gould <ted@gould.cx>
+ *
+ * Copyright (C) 2006 Authors
+ *
+ * Released under GNU GPL, read the file 'COPYING' for more information
+ */
+
+#include "extension.h"
+
+namespace Inkscape {
+namespace Extension {
+
+class PathEffect : public Extension {
+
+public:
+ PathEffect (Inkscape::XML::Node * in_repr,
+ Implementation::Implementation * in_imp);
+ virtual ~PathEffect (void);
+ gchar * processPath (gchar * path_data,
+ gchar * pressure,
+ gchar * tilt);
+
+}; /* PathEffect */
+
+
+} } /* namespace Inkscape, Extension */
+#endif /* INKSCAPE_EXTENSION_EFFECT_H__ */
+
+/*
+ Local Variables:
+ mode:c++
+ c-file-style:"stroustrup"
+ c-file-offsets:((innamespace . 0)(inline-open . 0)(case-label . +))
+ indent-tabs-mode:nil
+ fill-column:99
+ End:
+*/
+// vim: filetype=cpp:expandtab:shiftwidth=4:tabstop=8:softtabstop=4 :