// SPDX-License-Identifier: GPL-2.0-or-later /* * Copyright (C) 2007 Authors: * Christopher Brown * Ted Gould * * Released under GNU GPL v2+, read the file 'COPYING' for more information. */ #include "imagemagick.h" namespace Inkscape { namespace Extension { namespace Internal { namespace Bitmap { class Equalize : public ImageMagick { public: void applyEffect(Magick::Image *image) override; void refreshParameters(Inkscape::Extension::Effect *module) override; static void init (); }; }; /* namespace Bitmap */ }; /* namespace Internal */ }; /* namespace Extension */ }; /* namespace Inkscape */