20 lines
449 B
C++
20 lines
449 B
C++
#ifndef IMGPLUSUPLOADER_HPP
|
|
#define IMGPLUSUPLOADER_HPP
|
|
|
|
#include <uploaders/uploader.hpp>
|
|
|
|
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
|