KShare/uploaders/default/imguruploader.hpp

18 lines
333 B
C++
Raw Normal View History

2017-04-23 15:05:48 +02:00
#ifndef IMGURUPLOADER_HPP
#define IMGURUPLOADER_HPP
#include "../uploader.hpp"
2017-05-06 13:21:12 +02:00
class ImgurUploader : public Uploader {
public:
QString name() {
return "imgur";
}
QString description() {
return "imgur.com uploader";
}
void doUpload(QByteArray byteArray, QString);
2017-04-23 15:05:48 +02:00
};
#endif // IMGURUPLOADER_HPP