KShare/uploaders/default/imguruploader.hpp

21 lines
331 B
C++
Raw Normal View History

2017-04-23 15:05:48 +02:00
#ifndef IMGURUPLOADER_HPP
#define IMGURUPLOADER_HPP
#include "../uploader.hpp"
class ImgurUploader : public Uploader
{
public:
QString name()
{
return "imgur";
}
QString description()
{
return "imgur.com uploader";
}
void doUpload(QPixmap *pixmap);
};
#endif // IMGURUPLOADER_HPP