KShare/uploaders/default/imguruploader.hpp

14 lines
289 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(QPixmap *pixmap);
2017-04-23 15:05:48 +02:00
};
#endif // IMGURUPLOADER_HPP