37ce6f1eda
I didn't read the clang-format documentation properly
18 lines
323 B
C++
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
|