#ifndef IMGPLUSUPLOADER_HPP #define IMGPLUSUPLOADER_HPP #include class ImgplusUploader : public Uploader { public: QString name() override { return "ImagePlus"; } QString description() override { return "imgpl.us uploader"; } void doUpload(QByteArray byteArray, QString format) override; void showSettings() override; bool validate() override; }; #endif // IMGPLUSUPLOADER_HPP