KShare/uploaders/default/imguruploader.hpp
ArsenArsen 37ce6f1eda Add clang-format; Make text and blur less annoying
I didn't read the clang-format documentation properly
2017-05-09 17:26:00 +02:00

18 lines
323 B
C++

#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