diff options
Diffstat (limited to 'src/extension/internal/gimpgrad.h')
| -rw-r--r-- | src/extension/internal/gimpgrad.h | 25 |
1 files changed, 14 insertions, 11 deletions
diff --git a/src/extension/internal/gimpgrad.h b/src/extension/internal/gimpgrad.h index ed409ef93..c34de840d 100644 --- a/src/extension/internal/gimpgrad.h +++ b/src/extension/internal/gimpgrad.h @@ -1,7 +1,4 @@ -/** \file - * - * Implementation class of the GIMP gradient plugin. - * +/* * Authors: * Ted Gould <ted@gould.cx> * @@ -9,20 +6,24 @@ * * Released under GNU GPL, read the file 'COPYING' for more information */ - +// TODO add include guard #include <glibmm/ustring.h> #include "extension/implementation/implementation.h" -#include "extension/extension-forward.h" namespace Inkscape { namespace Extension { + +class Extension; + namespace Internal { -/** \brief Implementation class of the GIMP gradient plugin. This mostly - just creates a namespace for the GIMP gradient plugin today. -*/ -class GimpGrad : public Inkscape::Extension::Implementation::Implementation { +/** + * Implementation class of the GIMP gradient plugin. + * This mostly just creates a namespace for the GIMP gradient plugin today. + */ +class GimpGrad : public Inkscape::Extension::Implementation::Implementation +{ public: bool load(Inkscape::Extension::Extension *module); void unload(Inkscape::Extension::Extension *module); @@ -32,7 +33,9 @@ public: }; -} } } /* namespace Internal; Extension; Inkscape */ +} // namespace Internal +} // namespace Extension +} // namespace Inkscape /* Local Variables: |
