00001 #ifndef _LANCZOSPLUGIN_H_ 00002 #define _LANCZOSPLUGIN_H_ 00003 00004 #include "quillimagefilter.h" 00005 #include "quillimagefilterinterface.h" 00006 #include "levels.h" 00007 00008 class LevelsPlugin : public QObject, 00009 public QuillImageFilterInterface 00010 { 00011 Q_OBJECT 00012 Q_INTERFACES(QuillImageFilterInterface) 00013 00014 public: 00015 LevelsPlugin(); 00016 00017 QuillImageFilterImplementation *create(const QString &name); 00018 00019 const QStringList name() const; 00020 00021 private: 00022 Q_DISABLE_COPY(LevelsPlugin); 00023 }; 00024 00025 #endif