Code

Filters. Some custom predefined filters fixes and tweaks (Silhouette and Neon Draw).
[inkscape.git] / src / extension / internal / gimpgrad.h
1 /** \file
2  *
3  * Implementation class of the GIMP gradient plugin.
4  *
5  * Authors:
6  *   Ted Gould <ted@gould.cx>
7  *
8  * Copyright (C) 2004-2005 Authors
9  *
10  * Released under GNU GPL, read the file 'COPYING' for more information
11  */
13 #include <glibmm/ustring.h>
15 #include "extension/implementation/implementation.h"
16 #include "extension/extension-forward.h"
18 namespace Inkscape {
19 namespace Extension {
20 namespace Internal {
22 /** \brief  Implementation class of the GIMP gradient plugin.  This mostly
23             just creates a namespace for the GIMP gradient plugin today.
24 */
25 class GimpGrad : public Inkscape::Extension::Implementation::Implementation {
26 public:
27     bool load(Inkscape::Extension::Extension *module);
28     void unload(Inkscape::Extension::Extension *module);
29     SPDocument *open(Inkscape::Extension::Input *module, gchar const *filename);
31     static void init();
32 };
35 } } }  /* namespace Internal; Extension; Inkscape */
37 /*
38   Local Variables:
39   mode:c++
40   c-file-style:"stroustrup"
41   c-file-offsets:((innamespace . 0)(inline-open . 0)(case-label . +))
42   indent-tabs-mode:nil
43   fill-column:99
44   End:
45 */
46 // vim: filetype=cpp:expandtab:shiftwidth=4:tabstop=8:softtabstop=4:fileencoding=utf-8:textwidth=99 :