summaryrefslogtreecommitdiffstats
path: root/src/filter-chemistry.h
diff options
context:
space:
mode:
authorbulia byak <buliabyak@gmail.com>2006-10-07 19:45:27 +0000
committerbuliabyak <buliabyak@users.sourceforge.net>2006-10-07 19:45:27 +0000
commit9ee92fcf77cf5791f59e5daa094b6ae4bfbafeb8 (patch)
tree7489f67bb0a8aa98c2e002741ff0364554b5be1c /src/filter-chemistry.h
parentwhitespace (line ends) (diff)
downloadinkscape-9ee92fcf77cf5791f59e5daa094b6ae4bfbafeb8.tar.gz
inkscape-9ee92fcf77cf5791f59e5daa094b6ae4bfbafeb8.zip
new file for filter manipulation stuff
(bzr r1775)
Diffstat (limited to 'src/filter-chemistry.h')
-rw-r--r--src/filter-chemistry.h33
1 files changed, 33 insertions, 0 deletions
diff --git a/src/filter-chemistry.h b/src/filter-chemistry.h
new file mode 100644
index 000000000..31776323e
--- /dev/null
+++ b/src/filter-chemistry.h
@@ -0,0 +1,33 @@
+#ifndef __SP_FILTER_CHEMISTRY_H__
+#define __SP_FILTER_CHEMISTRY_H__
+
+/*
+ * Various utility methods for filters
+ *
+ * Authors:
+ * Hugo Rodrigues
+ * bulia byak
+ *
+ * Copyright (C) 2006 authors
+ *
+ * Released under GNU GPL, read the file 'COPYING' for more information
+ */
+
+#include "forward.h"
+#include "sp-filter.h"
+
+SPFilter *new_filter_gaussian_blur (SPDocument *document, gdouble stdDeviation);
+void remove_filter (SPObject *item, bool recursive);
+
+#endif
+
+/*
+ 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:encoding=utf-8:textwidth=99 :